Struct rusoto_autoscaling::BlockDeviceMapping [] [src]

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

Describes a block device mapping.

Fields

The device name exposed to the EC2 instance (for example, /dev/sdh or xvdh).

The information about the Amazon EBS volume.

Suppresses a device mapping.

If this parameter is true for the root device, the instance might fail the EC2 health check. Auto Scaling launches a replacement instance if the instance fails the health check.

The name of the virtual device (for example, ephemeral0).

Trait Implementations

impl Default for BlockDeviceMapping
[src]

[src]

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

impl Debug for BlockDeviceMapping
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for BlockDeviceMapping
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations