[][src]Struct rusoto_es::StorageTypeLimit

pub struct StorageTypeLimit {
    pub limit_name: Option<String>,
    pub limit_values: Option<Vec<String>>,
}

Limits that are applicable for given storage type.

Fields

limit_name: Option<String>

Name of storage limits that are applicable for given storage type. If StorageType is ebs, following storage options are applicable

  1. MinimumVolumeSize
  2. Minimum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable.
  3. MaximumVolumeSize
  4. Maximum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable.
  5. MaximumIops
  6. Maximum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable.
  7. MinimumIops
  8. Minimum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable.

limit_values: Option<Vec<String>>

Values for the StorageTypeLimit$LimitName .

Trait Implementations

impl Clone for StorageTypeLimit[src]

impl Debug for StorageTypeLimit[src]

impl Default for StorageTypeLimit[src]

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

impl PartialEq<StorageTypeLimit> for StorageTypeLimit[src]

impl StructuralPartialEq for StorageTypeLimit[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, 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.