[][src]Struct rusoto_emr::VolumeSpecification

pub struct VolumeSpecification {
    pub iops: Option<i64>,
    pub size_in_gb: i64,
    pub volume_type: String,
}

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.

Fields

iops: Option<i64>

The number of I/O operations per second (IOPS) that the volume supports.

size_in_gb: i64

The volume size, in gibibytes (GiB). This can be a number from 1 - 1024. If the volume type is EBS-optimized, the minimum value is 10.

volume_type: String

The volume type. Volume types supported are gp2, io1, standard.

Trait Implementations

impl Clone for VolumeSpecification[src]

impl Debug for VolumeSpecification[src]

impl Default for VolumeSpecification[src]

impl<'de> Deserialize<'de> for VolumeSpecification[src]

impl PartialEq<VolumeSpecification> for VolumeSpecification[src]

impl Serialize for VolumeSpecification[src]

impl StructuralPartialEq for VolumeSpecification[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.