[][src]Struct rusoto_rds::DBProxy

pub struct DBProxy {
    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_security_group_ids: Option<Vec<String>>,
    pub vpc_subnet_ids: Option<Vec<String>>,
}

This is prerelease documentation for the RDS Database Proxy feature in preview release. It is subject to change.

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 AWS account in the specified AWS 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 proxy. You include the endpoint value in the connection string for a database client application.

engine_family: Option<String>

Currently, this value is always MYSQL. The engine family applies to both RDS MySQL and Aurora MySQL.

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_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

impl Clone for DBProxy[src]

impl Debug for DBProxy[src]

impl Default for DBProxy[src]

impl PartialEq<DBProxy> for DBProxy[src]

impl StructuralPartialEq for DBProxy[src]

Auto Trait Implementations

impl RefUnwindSafe for DBProxy

impl Send for DBProxy

impl Sync for DBProxy

impl Unpin for DBProxy

impl UnwindSafe for DBProxy

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.