pub struct GlobalReplicationGroupMember {
pub automatic_failover: Option<String>,
pub replication_group_id: Option<String>,
pub replication_group_region: Option<String>,
pub role: Option<String>,
pub status: Option<String>,
}
Expand description
A member of a Global Datastore. It contains the Replication Group Id, the AWS region and the role of the replication group.
Fields§
§automatic_failover: Option<String>
Indicates whether automatic failover is enabled for the replication group.
replication_group_id: Option<String>
The replication group id of the Global Datastore member.
replication_group_region: Option<String>
The AWS region of the Global Datastore member.
role: Option<String>
Indicates the role of the replication group, primary or secondary.
status: Option<String>
The status of the membership of the replication group.
Trait Implementations§
Source§impl Clone for GlobalReplicationGroupMember
impl Clone for GlobalReplicationGroupMember
Source§fn clone(&self) -> GlobalReplicationGroupMember
fn clone(&self) -> GlobalReplicationGroupMember
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GlobalReplicationGroupMember
impl Debug for GlobalReplicationGroupMember
Source§impl Default for GlobalReplicationGroupMember
impl Default for GlobalReplicationGroupMember
Source§fn default() -> GlobalReplicationGroupMember
fn default() -> GlobalReplicationGroupMember
Returns the “default value” for a type. Read more
Source§impl PartialEq for GlobalReplicationGroupMember
impl PartialEq for GlobalReplicationGroupMember
Source§fn eq(&self, other: &GlobalReplicationGroupMember) -> bool
fn eq(&self, other: &GlobalReplicationGroupMember) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GlobalReplicationGroupMember
Auto Trait Implementations§
impl Freeze for GlobalReplicationGroupMember
impl RefUnwindSafe for GlobalReplicationGroupMember
impl Send for GlobalReplicationGroupMember
impl Sync for GlobalReplicationGroupMember
impl Unpin for GlobalReplicationGroupMember
impl UnwindSafe for GlobalReplicationGroupMember
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
Mutably borrows from an owned value. Read more