Struct rusoto_emr::EbsBlockDeviceConfig[][src]

pub struct EbsBlockDeviceConfig {
    pub volume_specification: VolumeSpecification,
    pub volumes_per_instance: Option<i64>,
}

Configuration of requested EBS block device associated with the instance group with count of volumes that will be associated to every instance.

Fields

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.

Number of EBS volumes with a specific volume configuration that will be associated with every instance in the instance group

Trait Implementations

impl Default for EbsBlockDeviceConfig
[src]

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

impl Debug for EbsBlockDeviceConfig
[src]

Formats the value using the given formatter. Read more

impl Clone for EbsBlockDeviceConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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