DBProxyEndpointReference

class aws_cdk.aws_rds.DBProxyEndpointReference(*, db_proxy_endpoint_arn, db_proxy_endpoint_name)

Bases: object

A reference to a DBProxyEndpoint resource.

Parameters:
  • db_proxy_endpoint_arn (str) – The ARN of the DBProxyEndpoint resource.

  • db_proxy_endpoint_name (str) – The DBProxyEndpointName of the DBProxyEndpoint 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_endpoint_reference = rds.DBProxyEndpointReference(
    db_proxy_endpoint_arn="dbProxyEndpointArn",
    db_proxy_endpoint_name="dbProxyEndpointName"
)

Attributes

db_proxy_endpoint_arn

The ARN of the DBProxyEndpoint resource.

db_proxy_endpoint_name

The DBProxyEndpointName of the DBProxyEndpoint resource.