Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Documentation
data InstanceHardware Source #
Describes the hardware for the instance.
See: newInstanceHardware
smart constructor.
Instances
newInstanceHardware :: InstanceHardware Source #
Create a value of InstanceHardware
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:cpuCount:InstanceHardware'
, instanceHardware_cpuCount
- The number of vCPUs the instance has.
$sel:disks:InstanceHardware'
, instanceHardware_disks
- The disks attached to the instance.
$sel:ramSizeInGb:InstanceHardware'
, instanceHardware_ramSizeInGb
- The amount of RAM in GB on the instance (e.g., 1.0
).
instanceHardware_cpuCount :: Lens' InstanceHardware (Maybe Int) Source #
The number of vCPUs the instance has.
instanceHardware_disks :: Lens' InstanceHardware (Maybe [Disk]) Source #
The disks attached to the instance.
instanceHardware_ramSizeInGb :: Lens' InstanceHardware (Maybe Double) Source #
The amount of RAM in GB on the instance (e.g., 1.0
).