Struct rusoto_ec2::LaunchTemplateBlockDeviceMapping [] [src]

pub struct LaunchTemplateBlockDeviceMapping {
    pub device_name: Option<String>,
    pub ebs: Option<LaunchTemplateEbsBlockDevice>,
    pub no_device: Option<String>,
    pub virtual_name: Option<String>,
}

Describes a block device mapping.

Fields

The device name.

Information about the block device for an EBS volume.

Suppresses the specified device included in the block device mapping of the AMI.

The virtual device name (ephemeralN).

Trait Implementations

impl Default for LaunchTemplateBlockDeviceMapping
[src]

[src]

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

impl Debug for LaunchTemplateBlockDeviceMapping
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for LaunchTemplateBlockDeviceMapping
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations