[][src]Struct rusoto_rds::DBClusterMember

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>,
}

Contains information about an instance that is part of a DB cluster.

Fields

db_cluster_parameter_group_status: Option<String>

Specifies the status of the DB cluster parameter group for this member of the DB cluster.

db_instance_identifier: Option<String>

Specifies the instance identifier for this member of the DB cluster.

is_cluster_writer: Option<bool>

Value that is true if the cluster member is the primary instance for the DB cluster and false otherwise.

promotion_tier: Option<i64>

A value that specifies the order in which an Aurora Replica is promoted to the primary instance after a failure of the existing primary instance. For more information, see Fault Tolerance for an Aurora DB Cluster in the Amazon Aurora User Guide.

Trait Implementations

impl Clone for DBClusterMember[src]

impl Default for DBClusterMember[src]

impl PartialEq<DBClusterMember> for DBClusterMember[src]

impl Debug for DBClusterMember[src]

impl StructuralPartialEq for DBClusterMember[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self