Struct rusoto_opsworks::BlockDeviceMapping[][src]

pub struct BlockDeviceMapping {
    pub device_name: Option<String>,
    pub ebs: Option<EbsBlockDevice>,
    pub no_device: Option<String>,
    pub virtual_name: Option<String>,
}

Describes a block device mapping. This data type maps directly to the Amazon EC2 BlockDeviceMapping data type.

Fields

The device name that is exposed to the instance, such as /dev/sdh. For the root device, you can use the explicit device name or you can set this parameter to ROOT_DEVICE and AWS OpsWorks Stacks will provide the correct device name.

An EBSBlockDevice that defines how to configure an Amazon EBS volume when the instance is launched.

Suppresses the specified device included in the AMI's block device mapping.

The virtual device name. For more information, see BlockDeviceMapping.

Trait Implementations

impl Default for BlockDeviceMapping
[src]

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

impl Debug for BlockDeviceMapping
[src]

Formats the value using the given formatter. Read more

impl Clone for BlockDeviceMapping
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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