Struct rusoto_ec2::VolumeAttachment[][src]

pub struct VolumeAttachment {
    pub attach_time: Option<String>,
    pub delete_on_termination: Option<bool>,
    pub device: Option<String>,
    pub instance_id: Option<String>,
    pub state: Option<String>,
    pub volume_id: Option<String>,
}

Describes volume attachment details.

Fields

The time stamp when the attachment initiated.

Indicates whether the EBS volume is deleted on instance termination.

The device name.

The ID of the instance.

The attachment state of the volume.

The ID of the volume.

Trait Implementations

impl Default for VolumeAttachment
[src]

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

impl Debug for VolumeAttachment
[src]

Formats the value using the given formatter. Read more

impl Clone for VolumeAttachment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for VolumeAttachment
[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