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

DBProxyTarget

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

Contains the details for an RDS Proxy target. It represents an RDS DB instance or Aurora DB cluster that the proxy can connect to. One or more targets are associated with an RDS Proxy target group.

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

interface DBProxyTarget {
Endpoint?: string | null;
Port?: number | null;
RdsResourceId?: string | null;
Role?: TargetRole | null;
TargetArn?: string | null;
TargetHealth?: TargetHealth | null;
TrackedClusterId?: string | null;
Type?: TargetType | null;
}

§Properties

§
Endpoint?: string | null
[src]

The writer endpoint for the RDS DB instance or Aurora DB cluster.

§
Port?: number | null
[src]

The port that the RDS Proxy uses to connect to the target RDS DB instance or Aurora DB cluster.

§
RdsResourceId?: string | null
[src]

The identifier representing the target. It can be the instance identifier for an RDS DB instance, or the cluster identifier for an Aurora DB cluster.

§
Role?: TargetRole | null
[src]

A value that indicates whether the target of the proxy can be used for read/write or read-only operations.

§
TargetArn?: string | null
[src]

The Amazon Resource Name (ARN) for the RDS DB instance or Aurora DB cluster.

§
TargetHealth?: TargetHealth | null
[src]

Information about the connection health of the RDS Proxy target.

§
TrackedClusterId?: string | null
[src]

The DB cluster identifier when the target represents an Aurora DB cluster. This field is blank when the target represents an RDS DB instance.

§
Type?: TargetType | null
[src]

Specifies the kind of database, such as an RDS DB instance or an Aurora DB cluster, that the target represents.