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

Describes an Amazon RDS instance.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
rds_db_instance_arn: Option<String>

The instance's ARN.

db_instance_identifier: Option<String>

The DB instance identifier.

db_user: Option<String>

The master user name.

db_password: Option<String>

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

region: Option<String>

The instance's AWS region.

address: Option<String>

The instance's address.

engine: Option<String>

The instance's database engine.

stack_id: Option<String>

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

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.

Implementations

The instance's ARN.

The DB instance identifier.

The master user name.

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

The instance's AWS region.

The instance's address.

The instance's database engine.

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

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.

Creates a new builder-style object to manufacture RdsDbInstance

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

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.

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