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]

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

impl Debug for LaunchTemplateBlockDeviceMapping
[src]

Formats the value using the given formatter. Read more

impl Clone for LaunchTemplateBlockDeviceMapping
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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