Struct aws_sdk_ec2::model::InstanceStorageInfo [−][src]
#[non_exhaustive]pub struct InstanceStorageInfo {
pub total_size_in_gb: Option<i64>,
pub disks: Option<Vec<DiskInfo>>,
pub nvme_support: Option<EphemeralNvmeSupport>,
pub encryption_support: Option<InstanceStorageEncryptionSupport>,
}
Expand description
Describes the instance store features that are supported by the instance type.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.total_size_in_gb: Option<i64>
The total size of the disks, in GB.
disks: Option<Vec<DiskInfo>>
Describes the disks that are available for the instance type.
nvme_support: Option<EphemeralNvmeSupport>
Indicates whether non-volatile memory express (NVMe) is supported.
encryption_support: Option<InstanceStorageEncryptionSupport>
Indicates whether data is encrypted at rest.
Implementations
The total size of the disks, in GB.
Describes the disks that are available for the instance type.
Indicates whether non-volatile memory express (NVMe) is supported.
Indicates whether data is encrypted at rest.
Creates a new builder-style object to manufacture InstanceStorageInfo
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for InstanceStorageInfo
impl Send for InstanceStorageInfo
impl Sync for InstanceStorageInfo
impl Unpin for InstanceStorageInfo
impl UnwindSafe for InstanceStorageInfo
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more