[][src]Struct rusoto_es::ElasticsearchClusterConfig

pub struct ElasticsearchClusterConfig {
    pub dedicated_master_count: Option<i64>,
    pub dedicated_master_enabled: Option<bool>,
    pub dedicated_master_type: Option<String>,
    pub instance_count: Option<i64>,
    pub instance_type: Option<String>,
    pub warm_count: Option<i64>,
    pub warm_enabled: Option<bool>,
    pub warm_type: Option<String>,
    pub zone_awareness_config: Option<ZoneAwarenessConfig>,
    pub zone_awareness_enabled: Option<bool>,
}

Specifies the configuration for the domain cluster, such as the type and number of instances.

Fields

dedicated_master_count: Option<i64>

Total number of dedicated master nodes, active and on standby, for the cluster.

dedicated_master_enabled: Option<bool>

A boolean value to indicate whether a dedicated master node is enabled. See About Dedicated Master Nodes for more information.

dedicated_master_type: Option<String>

The instance type for a dedicated master node.

instance_count: Option<i64>

The number of instances in the specified domain cluster.

instance_type: Option<String>

The instance type for an Elasticsearch cluster. UltraWarm instance types are not supported for data instances.

warm_count: Option<i64>

The number of warm nodes in the cluster.

warm_enabled: Option<bool>

True to enable warm storage.

warm_type: Option<String>

The instance type for the Elasticsearch cluster's warm nodes.

zone_awareness_config: Option<ZoneAwarenessConfig>

Specifies the zone awareness configuration for a domain when zone awareness is enabled.

zone_awareness_enabled: Option<bool>

A boolean value to indicate whether zone awareness is enabled. See About Zone Awareness for more information.

Trait Implementations

impl Clone for ElasticsearchClusterConfig[src]

impl Debug for ElasticsearchClusterConfig[src]

impl Default for ElasticsearchClusterConfig[src]

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

impl PartialEq<ElasticsearchClusterConfig> for ElasticsearchClusterConfig[src]

impl Serialize for ElasticsearchClusterConfig[src]

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