{-# 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.FpgaInfo -- 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.FpgaInfo 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 Amazonka.EC2.Types.FpgaDeviceInfo import qualified Amazonka.Prelude as Prelude -- | Describes the FPGAs for the instance type. -- -- /See:/ 'newFpgaInfo' smart constructor. data FpgaInfo = FpgaInfo' { -- | Describes the FPGAs for the instance type. fpgas :: Prelude.Maybe [FpgaDeviceInfo], -- | The total memory of all FPGA accelerators for the instance type. totalFpgaMemoryInMiB :: Prelude.Maybe Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'FpgaInfo' 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: -- -- 'fpgas', 'fpgaInfo_fpgas' - Describes the FPGAs for the instance type. -- -- 'totalFpgaMemoryInMiB', 'fpgaInfo_totalFpgaMemoryInMiB' - The total memory of all FPGA accelerators for the instance type. newFpgaInfo :: FpgaInfo newFpgaInfo = FpgaInfo' { fpgas = Prelude.Nothing, totalFpgaMemoryInMiB = Prelude.Nothing } -- | Describes the FPGAs for the instance type. fpgaInfo_fpgas :: Lens.Lens' FpgaInfo (Prelude.Maybe [FpgaDeviceInfo]) fpgaInfo_fpgas = Lens.lens (\FpgaInfo' {fpgas} -> fpgas) (\s@FpgaInfo' {} a -> s {fpgas = a} :: FpgaInfo) Prelude.. Lens.mapping Lens.coerced -- | The total memory of all FPGA accelerators for the instance type. fpgaInfo_totalFpgaMemoryInMiB :: Lens.Lens' FpgaInfo (Prelude.Maybe Prelude.Int) fpgaInfo_totalFpgaMemoryInMiB = Lens.lens (\FpgaInfo' {totalFpgaMemoryInMiB} -> totalFpgaMemoryInMiB) (\s@FpgaInfo' {} a -> s {totalFpgaMemoryInMiB = a} :: FpgaInfo) instance Data.FromXML FpgaInfo where parseXML x = FpgaInfo' Prelude.<$> ( x Data..@? "fpgas" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLList "item") ) Prelude.<*> (x Data..@? "totalFpgaMemoryInMiB") instance Prelude.Hashable FpgaInfo where hashWithSalt _salt FpgaInfo' {..} = _salt `Prelude.hashWithSalt` fpgas `Prelude.hashWithSalt` totalFpgaMemoryInMiB instance Prelude.NFData FpgaInfo where rnf FpgaInfo' {..} = Prelude.rnf fpgas `Prelude.seq` Prelude.rnf totalFpgaMemoryInMiB