[][src]Struct rusoto_elasticache::CreateGlobalReplicationGroupMessage

pub struct CreateGlobalReplicationGroupMessage {
    pub global_replication_group_description: Option<String>,
    pub global_replication_group_id_suffix: String,
    pub primary_replication_group_id: String,
}

Fields

global_replication_group_description: Option<String>

Provides details of the Global Datastore

global_replication_group_id_suffix: String

The suffix name of a Global Datastore. Amazon ElastiCache automatically applies a prefix to the Global Datastore ID when it is created. Each AWS Region has its own prefix. For instance, a Global Datastore ID created in the US-West-1 region will begin with "dsdfu" along with the suffix name you provide. The suffix, combined with the auto-generated prefix, guarantees uniqueness of the Global Datastore name across multiple regions.

For a full list of AWS Regions and their respective Global Datastore iD prefixes, see Using the AWS CLI with Global Datastores .

primary_replication_group_id: String

The name of the primary cluster that accepts writes and will replicate updates to the secondary cluster.

Trait Implementations

impl Clone for CreateGlobalReplicationGroupMessage[src]

impl Debug for CreateGlobalReplicationGroupMessage[src]

impl Default for CreateGlobalReplicationGroupMessage[src]

impl PartialEq<CreateGlobalReplicationGroupMessage> for CreateGlobalReplicationGroupMessage[src]

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