Struct rusoto_ec2::EbsInstanceBlockDeviceSpecification[][src]

pub struct EbsInstanceBlockDeviceSpecification {
    pub delete_on_termination: Option<bool>,
    pub volume_id: Option<String>,
}

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

Fields

Indicates whether the volume is deleted on instance termination.

The ID of the EBS volume.

Trait Implementations

impl Default for EbsInstanceBlockDeviceSpecification
[src]

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

impl Debug for EbsInstanceBlockDeviceSpecification
[src]

Formats the value using the given formatter. Read more

impl Clone for EbsInstanceBlockDeviceSpecification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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