Struct aws_sdk_elasticache::model::RegionalConfiguration
source · [−]#[non_exhaustive]pub struct RegionalConfiguration {
pub replication_group_id: Option<String>,
pub replication_group_region: Option<String>,
pub resharding_configuration: Option<Vec<ReshardingConfiguration>>,
}
Expand description
A list of the replication groups
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.replication_group_id: Option<String>
The name of the secondary cluster
replication_group_region: Option<String>
The Amazon region where the cluster is stored
resharding_configuration: Option<Vec<ReshardingConfiguration>>
A list of PreferredAvailabilityZones
objects that specifies the configuration of a node group in the resharded cluster.
Implementations
sourceimpl RegionalConfiguration
impl RegionalConfiguration
sourcepub fn replication_group_id(&self) -> Option<&str>
pub fn replication_group_id(&self) -> Option<&str>
The name of the secondary cluster
sourcepub fn replication_group_region(&self) -> Option<&str>
pub fn replication_group_region(&self) -> Option<&str>
The Amazon region where the cluster is stored
sourcepub fn resharding_configuration(&self) -> Option<&[ReshardingConfiguration]>
pub fn resharding_configuration(&self) -> Option<&[ReshardingConfiguration]>
A list of PreferredAvailabilityZones
objects that specifies the configuration of a node group in the resharded cluster.
sourceimpl RegionalConfiguration
impl RegionalConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RegionalConfiguration
Trait Implementations
sourceimpl Clone for RegionalConfiguration
impl Clone for RegionalConfiguration
sourcefn clone(&self) -> RegionalConfiguration
fn clone(&self) -> RegionalConfiguration
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 Debug for RegionalConfiguration
impl Debug for RegionalConfiguration
sourceimpl PartialEq<RegionalConfiguration> for RegionalConfiguration
impl PartialEq<RegionalConfiguration> for RegionalConfiguration
sourcefn eq(&self, other: &RegionalConfiguration) -> bool
fn eq(&self, other: &RegionalConfiguration) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RegionalConfiguration) -> bool
fn ne(&self, other: &RegionalConfiguration) -> bool
This method tests for !=
.
impl StructuralPartialEq for RegionalConfiguration
Auto Trait Implementations
impl RefUnwindSafe for RegionalConfiguration
impl Send for RegionalConfiguration
impl Sync for RegionalConfiguration
impl Unpin for RegionalConfiguration
impl UnwindSafe for RegionalConfiguration
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