Struct aws_sdk_securityhub::types::AwsRdsDbClusterMember
source · #[non_exhaustive]pub struct AwsRdsDbClusterMember {
pub is_cluster_writer: Option<bool>,
pub promotion_tier: Option<i32>,
pub db_instance_identifier: Option<String>,
pub db_cluster_parameter_group_status: Option<String>,
}
Expand description
Information about an instance in the DB cluster.
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.is_cluster_writer: Option<bool>
Whether the cluster member is the primary instance for the DB cluster.
promotion_tier: Option<i32>
Specifies the order in which an Aurora replica is promoted to the primary instance when the existing primary instance fails.
db_instance_identifier: Option<String>
The instance identifier for this member of the DB cluster.
db_cluster_parameter_group_status: Option<String>
The status of the DB cluster parameter group for this member of the DB cluster.
Implementations§
source§impl AwsRdsDbClusterMember
impl AwsRdsDbClusterMember
sourcepub fn is_cluster_writer(&self) -> Option<bool>
pub fn is_cluster_writer(&self) -> Option<bool>
Whether the cluster member is the primary instance for the DB cluster.
sourcepub fn promotion_tier(&self) -> Option<i32>
pub fn promotion_tier(&self) -> Option<i32>
Specifies the order in which an Aurora replica is promoted to the primary instance when the existing primary instance fails.
sourcepub fn db_instance_identifier(&self) -> Option<&str>
pub fn db_instance_identifier(&self) -> Option<&str>
The instance identifier for this member of the DB cluster.
sourcepub fn db_cluster_parameter_group_status(&self) -> Option<&str>
pub fn db_cluster_parameter_group_status(&self) -> Option<&str>
The status of the DB cluster parameter group for this member of the DB cluster.
source§impl AwsRdsDbClusterMember
impl AwsRdsDbClusterMember
sourcepub fn builder() -> AwsRdsDbClusterMemberBuilder
pub fn builder() -> AwsRdsDbClusterMemberBuilder
Creates a new builder-style object to manufacture AwsRdsDbClusterMember
.
Trait Implementations§
source§impl Clone for AwsRdsDbClusterMember
impl Clone for AwsRdsDbClusterMember
source§fn clone(&self) -> AwsRdsDbClusterMember
fn clone(&self) -> AwsRdsDbClusterMember
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AwsRdsDbClusterMember
impl Debug for AwsRdsDbClusterMember
source§impl PartialEq for AwsRdsDbClusterMember
impl PartialEq for AwsRdsDbClusterMember
source§fn eq(&self, other: &AwsRdsDbClusterMember) -> bool
fn eq(&self, other: &AwsRdsDbClusterMember) -> bool
self
and other
values to be equal, and is used
by ==
.