DBProxyReference

class aws_cdk.aws_rds.DBProxyReference(*, db_proxy_arn, db_proxy_name)

Bases: object

A reference to a DBProxy resource.

Parameters:
  • db_proxy_arn (str) – The ARN of the DBProxy resource.

  • db_proxy_name (str) – The DBProxyName of the DBProxy resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_rds as rds

d_bProxy_reference = rds.DBProxyReference(
    db_proxy_arn="dbProxyArn",
    db_proxy_name="dbProxyName"
)

Attributes

db_proxy_arn

The ARN of the DBProxy resource.

db_proxy_name

The DBProxyName of the DBProxy resource.