logo
pub struct DBProxy {
Show 15 fields pub auth: Option<Vec<UserAuthConfigInfo>>, pub created_date: Option<String>, pub db_proxy_arn: Option<String>, pub db_proxy_name: Option<String>, pub debug_logging: Option<bool>, pub endpoint: Option<String>, pub engine_family: Option<String>, pub idle_client_timeout: Option<i64>, pub require_tls: Option<bool>, pub role_arn: Option<String>, pub status: Option<String>, pub updated_date: Option<String>, pub vpc_id: Option<String>, pub vpc_security_group_ids: Option<Vec<String>>, pub vpc_subnet_ids: Option<Vec<String>>,
}
Expand description

The data structure representing a proxy managed by the RDS Proxy.

This data type is used as a response element in the DescribeDBProxies action.

Fields

auth: Option<Vec<UserAuthConfigInfo>>

One or more data structures specifying the authorization mechanism to connect to the associated RDS DB instance or Aurora DB cluster.

created_date: Option<String>

The date and time when the proxy was first created.

db_proxy_arn: Option<String>

The Amazon Resource Name (ARN) for the proxy.

db_proxy_name: Option<String>

The identifier for the proxy. This name must be unique for all proxies owned by your Amazon Web Services account in the specified Amazon Web Services Region.

debug_logging: Option<bool>

Whether the proxy includes detailed information about SQL statements in its logs. This information helps you to debug issues involving SQL behavior or the performance and scalability of the proxy connections. The debug information includes the text of SQL statements that you submit through the proxy. Thus, only enable this setting when needed for debugging, and only when you have security measures in place to safeguard any sensitive information that appears in the logs.

endpoint: Option<String>

The endpoint that you can use to connect to the DB proxy. You include the endpoint value in the connection string for a database client application.

engine_family: Option<String>

The engine family applies to MySQL and PostgreSQL for both RDS and Aurora.

idle_client_timeout: Option<i64>

The number of seconds a connection to the proxy can have no activity before the proxy drops the client connection. The proxy keeps the underlying database connection open and puts it back into the connection pool for reuse by later connection requests.

Default: 1800 (30 minutes)

Constraints: 1 to 28,800

require_tls: Option<bool>

Indicates whether Transport Layer Security (TLS) encryption is required for connections to the proxy.

role_arn: Option<String>

The Amazon Resource Name (ARN) for the IAM role that the proxy uses to access Amazon Secrets Manager.

status: Option<String>

The current status of this proxy. A status of available means the proxy is ready to handle requests. Other values indicate that you must wait for the proxy to be ready, or take some action to resolve an issue.

updated_date: Option<String>

The date and time when the proxy was last updated.

vpc_id: Option<String>

Provides the VPC ID of the DB proxy.

vpc_security_group_ids: Option<Vec<String>>

Provides a list of VPC security groups that the proxy belongs to.

vpc_subnet_ids: Option<Vec<String>>

The EC2 subnet IDs for the proxy.

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

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