Struct rusoto_emr::EbsConfiguration[][src]

pub struct EbsConfiguration {
    pub ebs_block_device_configs: Option<Vec<EbsBlockDeviceConfig>>,
    pub ebs_optimized: Option<bool>,
}

The Amazon EBS configuration of a cluster instance.

Fields

An array of Amazon EBS volume specifications attached to a cluster instance.

Indicates whether an Amazon EBS volume is EBS-optimized.

Trait Implementations

impl Default for EbsConfiguration
[src]

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

impl Debug for EbsConfiguration
[src]

Formats the value using the given formatter. Read more

impl Clone for EbsConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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