Associate one or more DBProxyTarget
data structures with a
DBProxyTargetGroup
.
rds_register_db_proxy_targets(DBProxyName, TargetGroupName,
DBInstanceIdentifiers, DBClusterIdentifiers)
A list with the following syntax:
list(
DBProxyTargets = list(
list(
TargetArn = "string",
Endpoint = "string",
TrackedClusterId = "string",
RdsResourceId = "string",
Port = 123,
Type = "RDS_INSTANCE"|"RDS_SERVERLESS_ENDPOINT"|"TRACKED_CLUSTER",
TargetHealth = list(
State = "REGISTERING"|"AVAILABLE"|"UNAVAILABLE",
Reason = "UNREACHABLE"|"CONNECTION_FAILED"|"AUTH_FAILURE"|"PENDING_PROXY_CAPACITY",
Description = "string"
)
)
)
)
[required] The identifier of the DBProxy
that is associated with the
DBProxyTargetGroup
.
The identifier of the DBProxyTargetGroup
.
One or more DB instance identifiers.
One or more DB cluster identifiers.
svc$register_db_proxy_targets(
DBProxyName = "string",
TargetGroupName = "string",
DBInstanceIdentifiers = list(
"string"
),
DBClusterIdentifiers = list(
"string"
)
)