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 ==
.impl StructuralPartialEq for CreateGlobalReplicationGroupInput
Auto Trait Implementations§
impl Freeze for CreateGlobalReplicationGroupInput
impl RefUnwindSafe for CreateGlobalReplicationGroupInput
impl Send for CreateGlobalReplicationGroupInput
impl Sync for CreateGlobalReplicationGroupInput
impl Unpin for CreateGlobalReplicationGroupInput
impl UnwindSafe for CreateGlobalReplicationGroupInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more