#[non_exhaustive]pub struct CreateGlobalTableWitnessGroupMemberAction {
pub region_name: String,
}
Expand description
Specifies the action to add a new witness Region to a MRSC global table. A MRSC global table can be configured with either three replicas, or with two replicas and one witness.
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.region_name: String
The Amazon Web Services Region name to be added as a witness Region for the MRSC global table. The witness must be in a different Region than the replicas and within the same Region set:
-
US Region set: US East (N. Virginia), US East (Ohio), US West (Oregon)
-
EU Region set: Europe (Ireland), Europe (London), Europe (Paris), Europe (Frankfurt)
-
AP Region set: Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Osaka)
Implementations§
Source§impl CreateGlobalTableWitnessGroupMemberAction
impl CreateGlobalTableWitnessGroupMemberAction
Sourcepub fn region_name(&self) -> &str
pub fn region_name(&self) -> &str
The Amazon Web Services Region name to be added as a witness Region for the MRSC global table. The witness must be in a different Region than the replicas and within the same Region set:
-
US Region set: US East (N. Virginia), US East (Ohio), US West (Oregon)
-
EU Region set: Europe (Ireland), Europe (London), Europe (Paris), Europe (Frankfurt)
-
AP Region set: Asia Pacific (Tokyo), Asia Pacific (Seoul), Asia Pacific (Osaka)
Source§impl CreateGlobalTableWitnessGroupMemberAction
impl CreateGlobalTableWitnessGroupMemberAction
Sourcepub fn builder() -> CreateGlobalTableWitnessGroupMemberActionBuilder
pub fn builder() -> CreateGlobalTableWitnessGroupMemberActionBuilder
Creates a new builder-style object to manufacture CreateGlobalTableWitnessGroupMemberAction
.
Trait Implementations§
Source§impl Clone for CreateGlobalTableWitnessGroupMemberAction
impl Clone for CreateGlobalTableWitnessGroupMemberAction
Source§fn clone(&self) -> CreateGlobalTableWitnessGroupMemberAction
fn clone(&self) -> CreateGlobalTableWitnessGroupMemberAction
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl PartialEq for CreateGlobalTableWitnessGroupMemberAction
impl PartialEq for CreateGlobalTableWitnessGroupMemberAction
Source§fn eq(&self, other: &CreateGlobalTableWitnessGroupMemberAction) -> bool
fn eq(&self, other: &CreateGlobalTableWitnessGroupMemberAction) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateGlobalTableWitnessGroupMemberAction
Auto Trait Implementations§
impl Freeze for CreateGlobalTableWitnessGroupMemberAction
impl RefUnwindSafe for CreateGlobalTableWitnessGroupMemberAction
impl Send for CreateGlobalTableWitnessGroupMemberAction
impl Sync for CreateGlobalTableWitnessGroupMemberAction
impl Unpin for CreateGlobalTableWitnessGroupMemberAction
impl UnwindSafe for CreateGlobalTableWitnessGroupMemberAction
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§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