{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.EC2.Types.CpuOptions -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.EC2.Types.CpuOptions where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.EC2.Internal import qualified Amazonka.Prelude as Prelude -- | The CPU options for the instance. -- -- /See:/ 'newCpuOptions' smart constructor. data CpuOptions = CpuOptions' { -- | The number of CPU cores for the instance. coreCount :: Prelude.Maybe Prelude.Int, -- | The number of threads per CPU core. threadsPerCore :: Prelude.Maybe Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CpuOptions' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'coreCount', 'cpuOptions_coreCount' - The number of CPU cores for the instance. -- -- 'threadsPerCore', 'cpuOptions_threadsPerCore' - The number of threads per CPU core. newCpuOptions :: CpuOptions newCpuOptions = CpuOptions' { coreCount = Prelude.Nothing, threadsPerCore = Prelude.Nothing } -- | The number of CPU cores for the instance. cpuOptions_coreCount :: Lens.Lens' CpuOptions (Prelude.Maybe Prelude.Int) cpuOptions_coreCount = Lens.lens (\CpuOptions' {coreCount} -> coreCount) (\s@CpuOptions' {} a -> s {coreCount = a} :: CpuOptions) -- | The number of threads per CPU core. cpuOptions_threadsPerCore :: Lens.Lens' CpuOptions (Prelude.Maybe Prelude.Int) cpuOptions_threadsPerCore = Lens.lens (\CpuOptions' {threadsPerCore} -> threadsPerCore) (\s@CpuOptions' {} a -> s {threadsPerCore = a} :: CpuOptions) instance Data.FromXML CpuOptions where parseXML x = CpuOptions' Prelude.<$> (x Data..@? "coreCount") Prelude.<*> (x Data..@? "threadsPerCore") instance Prelude.Hashable CpuOptions where hashWithSalt _salt CpuOptions' {..} = _salt `Prelude.hashWithSalt` coreCount `Prelude.hashWithSalt` threadsPerCore instance Prelude.NFData CpuOptions where rnf CpuOptions' {..} = Prelude.rnf coreCount `Prelude.seq` Prelude.rnf threadsPerCore