Struct rusoto_ec2::InstanceBlockDeviceMapping[][src]

pub struct InstanceBlockDeviceMapping {
    pub device_name: Option<String>,
    pub ebs: Option<EbsInstanceBlockDevice>,
}

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.

Trait Implementations

impl Default for InstanceBlockDeviceMapping
[src]

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

impl Debug for InstanceBlockDeviceMapping
[src]

Formats the value using the given formatter. Read more

impl Clone for InstanceBlockDeviceMapping
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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