Struct rusoto_emr::EbsBlockDevice[][src]

pub struct EbsBlockDevice {
    pub device: Option<String>,
    pub volume_specification: Option<VolumeSpecification>,
}

Configuration of requested EBS block device associated with the instance group.

Fields

The device name that is exposed to the instance, such as /dev/sdh.

EBS volume specifications such as volume type, IOPS, and size (GiB) that will be requested for the EBS volume attached to an EC2 instance in the cluster.

Trait Implementations

impl Default for EbsBlockDevice
[src]

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

impl Debug for EbsBlockDevice
[src]

Formats the value using the given formatter. Read more

impl Clone for EbsBlockDevice
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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