DBProxyReference
- class aws_cdk.interfaces.aws_rds.DBProxyReference(*, db_proxy_arn, db_proxy_name)
Bases:
objectA 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.interfaces import aws_rds as interfaces_rds d_bProxy_reference = interfaces_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.