Struct rusoto_rds::DBInstanceStatusInfo [] [src]

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

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.

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

Status of the DB instance. For a StatusType of read replica, the values can be replicating, error, stopped, or terminated.

This value is currently "read replication."

Trait Implementations

impl Default for DBInstanceStatusInfo
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for DBInstanceStatusInfo
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DBInstanceStatusInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations