Struct aws_sdk_ec2::model::EbsInstanceBlockDevice [−][src]
#[non_exhaustive]pub struct EbsInstanceBlockDevice {
pub attach_time: Option<Instant>,
pub delete_on_termination: Option<bool>,
pub status: Option<AttachmentStatus>,
pub volume_id: Option<String>,
}
Expand description
Describes a parameter used to set up an EBS volume in a block device mapping.
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.attach_time: Option<Instant>
The time stamp when the attachment initiated.
delete_on_termination: Option<bool>
Indicates whether the volume is deleted on instance termination.
status: Option<AttachmentStatus>
The attachment state.
volume_id: Option<String>
The ID of the EBS volume.
Implementations
The time stamp when the attachment initiated.
Indicates whether the volume is deleted on instance termination.
The attachment state.
Creates a new builder-style object to manufacture EbsInstanceBlockDevice
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 EbsInstanceBlockDevice
impl Send for EbsInstanceBlockDevice
impl Sync for EbsInstanceBlockDevice
impl Unpin for EbsInstanceBlockDevice
impl UnwindSafe for EbsInstanceBlockDevice
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