[][src]Struct rusoto_elasticache::ModifyGlobalReplicationGroupMessage

pub struct ModifyGlobalReplicationGroupMessage {
    pub apply_immediately: bool,
    pub automatic_failover_enabled: Option<bool>,
    pub cache_node_type: Option<String>,
    pub engine_version: Option<String>,
    pub global_replication_group_description: Option<String>,
    pub global_replication_group_id: String,
}

Fields

apply_immediately: bool

This parameter causes the modifications in this request and any pending modifications to be applied, asynchronously and as soon as possible. Modifications to Global Replication Groups cannot be requested to be applied in PreferredMaintenceWindow.

automatic_failover_enabled: Option<bool>

Determines whether a read replica is automatically promoted to read/write primary if the existing primary encounters a failure.

cache_node_type: Option<String>

A valid cache node type that you want to scale this Global Datastore to.

engine_version: Option<String>

The upgraded version of the cache engine to be run on the clusters in the Global Datastore.

global_replication_group_description: Option<String>

A description of the Global Datastore

global_replication_group_id: String

The name of the Global Datastore

Trait Implementations

impl Clone for ModifyGlobalReplicationGroupMessage[src]

impl Debug for ModifyGlobalReplicationGroupMessage[src]

impl Default for ModifyGlobalReplicationGroupMessage[src]

impl PartialEq<ModifyGlobalReplicationGroupMessage> for ModifyGlobalReplicationGroupMessage[src]

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