#[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
sourceimpl CreateGlobalReplicationGroupInput
impl CreateGlobalReplicationGroupInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateGlobalReplicationGroup, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateGlobalReplicationGroup, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateGlobalReplicationGroup
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateGlobalReplicationGroupInput
sourceimpl 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.
Trait Implementations
sourceimpl Clone for CreateGlobalReplicationGroupInput
impl Clone for CreateGlobalReplicationGroupInput
sourcefn clone(&self) -> CreateGlobalReplicationGroupInput
fn clone(&self) -> CreateGlobalReplicationGroupInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<CreateGlobalReplicationGroupInput> for CreateGlobalReplicationGroupInput
impl PartialEq<CreateGlobalReplicationGroupInput> for CreateGlobalReplicationGroupInput
sourcefn eq(&self, other: &CreateGlobalReplicationGroupInput) -> bool
fn eq(&self, other: &CreateGlobalReplicationGroupInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateGlobalReplicationGroupInput) -> bool
fn ne(&self, other: &CreateGlobalReplicationGroupInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateGlobalReplicationGroupInput
Auto Trait Implementations
impl RefUnwindSafe for CreateGlobalReplicationGroupInput
impl Send for CreateGlobalReplicationGroupInput
impl Sync for CreateGlobalReplicationGroupInput
impl Unpin for CreateGlobalReplicationGroupInput
impl UnwindSafe for CreateGlobalReplicationGroupInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more