Struct aws_sdk_elasticache::operation::create_global_replication_group::CreateGlobalReplicationGroupInput
source · #[non_exhaustive]pub struct CreateGlobalReplicationGroupInput {
pub global_replication_group_id_suffix: Option<String>,
pub global_replication_group_description: Option<String>,
pub primary_replication_group_id: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.global_replication_group_id_suffix: Option<String>
The suffix name of a Global datastore. Amazon ElastiCache automatically applies a prefix to the Global datastore ID when it is created. Each Amazon 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 Amazon Regions and their respective Global datastore iD prefixes, see Using the Amazon CLI with Global datastores .
global_replication_group_description: Option<String>
Provides details of the Global datastore
primary_replication_group_id: Option<String>
The name of the primary cluster that accepts writes and will replicate updates to the secondary cluster.
Implementations§
source§impl CreateGlobalReplicationGroupInput
impl CreateGlobalReplicationGroupInput
sourcepub fn global_replication_group_id_suffix(&self) -> Option<&str>
pub fn global_replication_group_id_suffix(&self) -> Option<&str>
The suffix name of a Global datastore. Amazon ElastiCache automatically applies a prefix to the Global datastore ID when it is created. Each Amazon 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 Amazon Regions and their respective Global datastore iD prefixes, see Using the Amazon CLI with Global datastores .
sourcepub fn global_replication_group_description(&self) -> Option<&str>
pub fn global_replication_group_description(&self) -> Option<&str>
Provides details of the Global datastore
sourcepub fn primary_replication_group_id(&self) -> Option<&str>
pub fn primary_replication_group_id(&self) -> Option<&str>
The name of the primary cluster that accepts writes and will replicate updates to the secondary cluster.
source§impl CreateGlobalReplicationGroupInput
impl CreateGlobalReplicationGroupInput
sourcepub fn builder() -> CreateGlobalReplicationGroupInputBuilder
pub fn builder() -> CreateGlobalReplicationGroupInputBuilder
Creates a new builder-style object to manufacture CreateGlobalReplicationGroupInput
.
Trait Implementations§
source§impl Clone for CreateGlobalReplicationGroupInput
impl Clone for CreateGlobalReplicationGroupInput
source§fn clone(&self) -> CreateGlobalReplicationGroupInput
fn clone(&self) -> CreateGlobalReplicationGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateGlobalReplicationGroupInput
impl PartialEq for CreateGlobalReplicationGroupInput
source§fn eq(&self, other: &CreateGlobalReplicationGroupInput) -> bool
fn eq(&self, other: &CreateGlobalReplicationGroupInput) -> bool
self
and other
values to be equal, and is used
by ==
.