Struct rusoto_ec2::InstanceBlockDeviceMappingSpecification[][src]

pub struct InstanceBlockDeviceMappingSpecification {
    pub device_name: Option<String>,
    pub ebs: Option<EbsInstanceBlockDeviceSpecification>,
    pub no_device: Option<String>,
    pub virtual_name: Option<String>,
}

Describes a block device mapping entry.

Fields

The device name (for example, /dev/sdh or xvdh).

Parameters used to automatically set up EBS volumes when the instance is launched.

suppress the specified device included in the block device mapping.

The virtual device name.

Trait Implementations

impl Default for InstanceBlockDeviceMappingSpecification
[src]

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

impl Debug for InstanceBlockDeviceMappingSpecification
[src]

Formats the value using the given formatter. Read more

impl Clone for InstanceBlockDeviceMappingSpecification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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