Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DBProxy

import type { DBProxy } from "https://aws-api.deno.dev/v0.3/services/rds.ts?docs=full";

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

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

interface DBProxy {
CreatedDate?: Date | number | null;
DBProxyArn?: string | null;
DBProxyName?: string | null;
DebugLogging?: boolean | null;
Endpoint?: string | null;
EngineFamily?: string | null;
IdleClientTimeout?: number | null;
RequireTLS?: boolean | null;
RoleArn?: string | null;
Status?: DBProxyStatus | null;
UpdatedDate?: Date | number | null;
VpcId?: string | null;
VpcSecurityGroupIds: string[];
VpcSubnetIds: string[];
}

§Properties

§

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

§
CreatedDate?: Date | number | null
[src]

The date and time when the proxy was first created.

§
DBProxyArn?: string | null
[src]

The Amazon Resource Name (ARN) for the proxy.

§
DBProxyName?: string | null
[src]

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.

§
DebugLogging?: boolean | null
[src]

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?: string | null
[src]

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.

§
EngineFamily?: string | null
[src]

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

§
IdleClientTimeout?: number | null
[src]

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

§
RequireTLS?: boolean | null
[src]

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

§
RoleArn?: string | null
[src]

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

§
Status?: DBProxyStatus | null
[src]

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.

§
UpdatedDate?: Date | number | null
[src]

The date and time when the proxy was last updated.

§
VpcId?: string | null
[src]

Provides the VPC ID of the DB proxy.

§
VpcSecurityGroupIds: string[]
[src]

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

§
VpcSubnetIds: string[]
[src]

The EC2 subnet IDs for the proxy.