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

DBProxyTargetGroup

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

Represents a set of RDS DB instances, Aurora DB clusters, or both that a proxy can connect to. Currently, each target group is associated with exactly one RDS DB instance or Aurora DB cluster.

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

interface DBProxyTargetGroup {
ConnectionPoolConfig?: ConnectionPoolConfigurationInfo | null;
CreatedDate?: Date | number | null;
DBProxyName?: string | null;
IsDefault?: boolean | null;
Status?: string | null;
TargetGroupArn?: string | null;
TargetGroupName?: string | null;
UpdatedDate?: Date | number | null;
}

§Properties

§
ConnectionPoolConfig?: ConnectionPoolConfigurationInfo | null
[src]

The settings that determine the size and behavior of the connection pool for the target group.

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

The date and time when the target group was first created.

§
DBProxyName?: string | null
[src]

The identifier for the RDS proxy associated with this target group.

§
IsDefault?: boolean | null
[src]

Whether this target group is the first one used for connection requests by the associated proxy. Because each proxy is currently associated with a single target group, currently this setting is always true.

§
Status?: string | null
[src]

The current status of this target group. A status of available means the target group is correctly associated with a database. Other values indicate that you must wait for the target group to be ready, or take some action to resolve an issue.

§
TargetGroupArn?: string | null
[src]

The Amazon Resource Name (ARN) representing the target group.

§
TargetGroupName?: string | null
[src]

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

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

The date and time when the target group was last updated.