logo
pub struct RdsDbInstance {
    pub address: Option<String>,
    pub db_instance_identifier: Option<String>,
    pub db_password: Option<String>,
    pub db_user: Option<String>,
    pub engine: Option<String>,
    pub missing_on_rds: Option<bool>,
    pub rds_db_instance_arn: Option<String>,
    pub region: Option<String>,
    pub stack_id: Option<String>,
}
Expand description

Describes an Amazon RDS instance.

Fields

address: Option<String>

The instance's address.

db_instance_identifier: Option<String>

The DB instance identifier.

db_password: Option<String>

AWS OpsWorks Stacks returns *****FILTERED***** instead of the actual value.

db_user: Option<String>

The master user name.

engine: Option<String>

The instance's database engine.

missing_on_rds: Option<bool>

Set to true if AWS OpsWorks Stacks is unable to discover the Amazon RDS instance. AWS OpsWorks Stacks attempts to discover the instance only once. If this value is set to true, you must deregister the instance, and then register it again.

rds_db_instance_arn: Option<String>

The instance's ARN.

region: Option<String>

The instance's AWS region.

stack_id: Option<String>

The ID of the stack with which the instance is registered.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more