Struct aws_sdk_ec2::model::LaunchTemplateEbsBlockDevice [−][src]
#[non_exhaustive]pub struct LaunchTemplateEbsBlockDevice {
pub encrypted: Option<bool>,
pub delete_on_termination: Option<bool>,
pub iops: Option<i32>,
pub kms_key_id: Option<String>,
pub snapshot_id: Option<String>,
pub volume_size: Option<i32>,
pub volume_type: Option<VolumeType>,
pub throughput: Option<i32>,
}
Expand description
Describes a block device for an EBS volume.
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.encrypted: Option<bool>
Indicates whether the EBS volume is encrypted.
delete_on_termination: Option<bool>
Indicates whether the EBS volume is deleted on instance termination.
iops: Option<i32>
The number of I/O operations per second (IOPS) that the volume supports.
kms_key_id: Option<String>
The ARN of the Key Management Service (KMS) CMK used for encryption.
snapshot_id: Option<String>
The ID of the snapshot.
volume_size: Option<i32>
The size of the volume, in GiB.
volume_type: Option<VolumeType>
The volume type.
throughput: Option<i32>
The throughput that the volume supports, in MiB/s.
Implementations
Indicates whether the EBS volume is deleted on instance termination.
The number of I/O operations per second (IOPS) that the volume supports.
The ARN of the Key Management Service (KMS) CMK used for encryption.
The ID of the snapshot.
The size of the volume, in GiB.
The volume type.
The throughput that the volume supports, in MiB/s.
Creates a new builder-style object to manufacture LaunchTemplateEbsBlockDevice
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 Send for LaunchTemplateEbsBlockDevice
impl Sync for LaunchTemplateEbsBlockDevice
impl Unpin for LaunchTemplateEbsBlockDevice
impl UnwindSafe for LaunchTemplateEbsBlockDevice
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