Struct aws_sdk_rds::types::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§
source§impl 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.
source§impl GlobalClusterMember
impl GlobalClusterMember
sourcepub fn builder() -> GlobalClusterMemberBuilder
pub fn builder() -> GlobalClusterMemberBuilder
Creates a new builder-style object to manufacture GlobalClusterMember.
Trait Implementations§
source§impl Clone for GlobalClusterMember
impl Clone for GlobalClusterMember
source§fn clone(&self) -> GlobalClusterMember
fn clone(&self) -> GlobalClusterMember
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 GlobalClusterMember
impl Debug for GlobalClusterMember
source§impl PartialEq<GlobalClusterMember> for GlobalClusterMember
impl PartialEq<GlobalClusterMember> for GlobalClusterMember
source§fn eq(&self, other: &GlobalClusterMember) -> bool
fn eq(&self, other: &GlobalClusterMember) -> bool
This method tests for
self and other values to be equal, and is used
by ==.