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 ==
.impl StructuralPartialEq for AwsRdsDbClusterMember
Auto Trait Implementations§
impl Freeze for AwsRdsDbClusterMember
impl RefUnwindSafe for AwsRdsDbClusterMember
impl Send for AwsRdsDbClusterMember
impl Sync for AwsRdsDbClusterMember
impl Unpin for AwsRdsDbClusterMember
impl UnwindSafe for AwsRdsDbClusterMember
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> 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