amazonka-ec2-2.0: gen/Amazonka/EC2/Types/DiskInfo.hs
{-# 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.DiskInfo
-- 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.DiskInfo 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.DiskType
import qualified Amazonka.Prelude as Prelude
-- | Describes a disk.
--
-- /See:/ 'newDiskInfo' smart constructor.
data DiskInfo = DiskInfo'
{ -- | The number of disks with this configuration.
count :: Prelude.Maybe Prelude.Int,
-- | The size of the disk in GB.
sizeInGB :: Prelude.Maybe Prelude.Integer,
-- | The type of disk.
type' :: Prelude.Maybe DiskType
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DiskInfo' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'count', 'diskInfo_count' - The number of disks with this configuration.
--
-- 'sizeInGB', 'diskInfo_sizeInGB' - The size of the disk in GB.
--
-- 'type'', 'diskInfo_type' - The type of disk.
newDiskInfo ::
DiskInfo
newDiskInfo =
DiskInfo'
{ count = Prelude.Nothing,
sizeInGB = Prelude.Nothing,
type' = Prelude.Nothing
}
-- | The number of disks with this configuration.
diskInfo_count :: Lens.Lens' DiskInfo (Prelude.Maybe Prelude.Int)
diskInfo_count = Lens.lens (\DiskInfo' {count} -> count) (\s@DiskInfo' {} a -> s {count = a} :: DiskInfo)
-- | The size of the disk in GB.
diskInfo_sizeInGB :: Lens.Lens' DiskInfo (Prelude.Maybe Prelude.Integer)
diskInfo_sizeInGB = Lens.lens (\DiskInfo' {sizeInGB} -> sizeInGB) (\s@DiskInfo' {} a -> s {sizeInGB = a} :: DiskInfo)
-- | The type of disk.
diskInfo_type :: Lens.Lens' DiskInfo (Prelude.Maybe DiskType)
diskInfo_type = Lens.lens (\DiskInfo' {type'} -> type') (\s@DiskInfo' {} a -> s {type' = a} :: DiskInfo)
instance Data.FromXML DiskInfo where
parseXML x =
DiskInfo'
Prelude.<$> (x Data..@? "count")
Prelude.<*> (x Data..@? "sizeInGB")
Prelude.<*> (x Data..@? "type")
instance Prelude.Hashable DiskInfo where
hashWithSalt _salt DiskInfo' {..} =
_salt
`Prelude.hashWithSalt` count
`Prelude.hashWithSalt` sizeInGB
`Prelude.hashWithSalt` type'
instance Prelude.NFData DiskInfo where
rnf DiskInfo' {..} =
Prelude.rnf count
`Prelude.seq` Prelude.rnf sizeInGB
`Prelude.seq` Prelude.rnf type'