[][src]Struct rusoto_rds::DBInstanceStatusInfo

pub struct DBInstanceStatusInfo {
    pub message: Option<String>,
    pub normal: Option<bool>,
    pub status: Option<String>,
    pub status_type: Option<String>,
}

Provides a list of status information for a DB instance.

Fields

message: Option<String>

Details of the error if there is an error for the instance. If the instance is not in an error state, this value is blank.

normal: Option<bool>

Boolean value that is true if the instance is operating normally, or false if the instance is in an error state.

status: Option<String>

Status of the DB instance. For a StatusType of Read Replica, the values can be replicating, replication stop point set, replication stop point reached, error, stopped, or terminated.

status_type: Option<String>

This value is currently "read replication."

Trait Implementations

impl Clone for DBInstanceStatusInfo[src]

impl Default for DBInstanceStatusInfo[src]

impl PartialEq<DBInstanceStatusInfo> for DBInstanceStatusInfo[src]

impl Debug for DBInstanceStatusInfo[src]

impl StructuralPartialEq for DBInstanceStatusInfo[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