Struct aws_sdk_rds::model::GlobalClusterMember
source · [−]#[non_exhaustive]pub struct GlobalClusterMember { /* private fields */ }Expand description
A data structure with information about any primary and secondary clusters associated with an Aurora global database.
Implementations
sourceimpl GlobalClusterMember
impl GlobalClusterMember
sourcepub fn db_cluster_arn(&self) -> Option<&str>
pub fn db_cluster_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for each Aurora cluster.
sourcepub fn readers(&self) -> Option<&[String]>
pub fn readers(&self) -> Option<&[String]>
The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Aurora global database.
sourcepub fn is_writer(&self) -> bool
pub fn is_writer(&self) -> bool
Specifies whether the Aurora cluster is the primary cluster (that is, has read-write capability) for the Aurora global database with which it is associated.
sourcepub fn global_write_forwarding_status(&self) -> Option<&WriteForwardingStatus>
pub fn global_write_forwarding_status(&self) -> Option<&WriteForwardingStatus>
Specifies whether a secondary cluster in an Aurora global database has write forwarding enabled, not enabled, or is in the process of enabling it.
sourceimpl GlobalClusterMember
impl GlobalClusterMember
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GlobalClusterMember.
Trait Implementations
sourceimpl Clone for GlobalClusterMember
impl Clone for GlobalClusterMember
sourcefn clone(&self) -> GlobalClusterMember
fn clone(&self) -> GlobalClusterMember
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 moresourceimpl Debug for GlobalClusterMember
impl Debug for GlobalClusterMember
sourceimpl PartialEq<GlobalClusterMember> for GlobalClusterMember
impl PartialEq<GlobalClusterMember> for GlobalClusterMember
sourcefn eq(&self, other: &GlobalClusterMember) -> bool
fn eq(&self, other: &GlobalClusterMember) -> bool
impl StructuralPartialEq for GlobalClusterMember
Auto Trait Implementations
impl RefUnwindSafe for GlobalClusterMember
impl Send for GlobalClusterMember
impl Sync for GlobalClusterMember
impl Unpin for GlobalClusterMember
impl UnwindSafe for GlobalClusterMember
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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