pub struct DBClusterMember {
pub db_cluster_parameter_group_status: Option<String>,
pub db_instance_identifier: Option<String>,
pub is_cluster_writer: Option<bool>,
pub promotion_tier: Option<i64>,
}Expand description
Contains information about an instance that is part of a cluster.
Fields§
§db_cluster_parameter_group_status: Option<String>Specifies the status of the cluster parameter group for this member of the DB cluster.
db_instance_identifier: Option<String>Specifies the instance identifier for this member of the cluster.
is_cluster_writer: Option<bool>A value that is true if the cluster member is the primary instance for the cluster and false otherwise.
promotion_tier: Option<i64>A value that specifies the order in which an Amazon DocumentDB replica is promoted to the primary instance after a failure of the existing primary instance.
Trait Implementations§
Source§impl Clone for DBClusterMember
impl Clone for DBClusterMember
Source§fn clone(&self) -> DBClusterMember
fn clone(&self) -> DBClusterMember
Returns a duplicate 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 DBClusterMember
impl Debug for DBClusterMember
Source§impl Default for DBClusterMember
impl Default for DBClusterMember
Source§fn default() -> DBClusterMember
fn default() -> DBClusterMember
Returns the “default value” for a type. Read more
Source§impl PartialEq for DBClusterMember
impl PartialEq for DBClusterMember
impl StructuralPartialEq for DBClusterMember
Auto Trait Implementations§
impl Freeze for DBClusterMember
impl RefUnwindSafe for DBClusterMember
impl Send for DBClusterMember
impl Sync for DBClusterMember
impl Unpin for DBClusterMember
impl UnwindSafe for DBClusterMember
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