Struct rusoto_ec2::EbsInstanceBlockDevice[][src]

pub struct EbsInstanceBlockDevice {
    pub attach_time: Option<String>,
    pub delete_on_termination: Option<bool>,
    pub status: Option<String>,
    pub volume_id: Option<String>,
}

Describes a parameter used to set up an EBS volume in a block device mapping.

Fields

The time stamp when the attachment initiated.

Indicates whether the volume is deleted on instance termination.

The attachment state.

The ID of the EBS volume.

Trait Implementations

impl Default for EbsInstanceBlockDevice
[src]

Returns the "default value" for a type. Read more

impl Debug for EbsInstanceBlockDevice
[src]

Formats the value using the given formatter. Read more

impl Clone for EbsInstanceBlockDevice
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EbsInstanceBlockDevice
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations