Struct rusoto_ec2::LaunchTemplateBlockDeviceMappingRequest [] [src]

pub struct LaunchTemplateBlockDeviceMappingRequest {
    pub device_name: Option<String>,
    pub ebs: Option<LaunchTemplateEbsBlockDeviceRequest>,
    pub no_device: Option<String>,
    pub virtual_name: Option<String>,
}

Describes a block device mapping.

Fields

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

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

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

The virtual device name (ephemeralN). Instance store volumes are numbered starting from 0. An instance type with 2 available instance store volumes can specify mappings for ephemeral0 and ephemeral1. The number of available instance store volumes depends on the instance type. After you connect to the instance, you must mount the volume.

Trait Implementations

impl Default for LaunchTemplateBlockDeviceMappingRequest
[src]

[src]

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

impl Debug for LaunchTemplateBlockDeviceMappingRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for LaunchTemplateBlockDeviceMappingRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations