DBProxyEndpointReference
- class aws_cdk.interfaces.aws_rds.DBProxyEndpointReference(*, db_proxy_endpoint_arn, db_proxy_endpoint_name)
Bases:
objectA 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.interfaces import aws_rds as interfaces_rds d_bProxy_endpoint_reference = interfaces_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.