[][src]Struct rusoto_es::AdditionalLimit

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

List of limits that are specific to a given InstanceType and for each of it's InstanceRole .

Fields

limit_name: Option<String>

Name of Additional Limit is specific to a given InstanceType and for each of it's InstanceRole etc.
Attributes and their details:

  • MaximumNumberOfDataNodesSupported
  • This attribute will be present in Master node only to specify how much data nodes upto which given ESPartitionInstanceType can support as master node.
  • MaximumNumberOfDataNodesWithoutMasterNode
  • This attribute will be present in Data node only to specify how much data nodes of given ESPartitionInstanceType upto which you don't need any master nodes to govern them.

limit_values: Option<Vec<String>>

Value for given AdditionalLimit$LimitName .

Trait Implementations

impl Clone for AdditionalLimit[src]

impl Debug for AdditionalLimit[src]

impl Default for AdditionalLimit[src]

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

impl PartialEq<AdditionalLimit> for AdditionalLimit[src]

impl StructuralPartialEq for AdditionalLimit[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, 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> Sealed<T> for T where
    T: ?Sized

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.