DatabaseProxyEndpointAttributes
- class aws_cdk.aws_rds.DatabaseProxyEndpointAttributes(*, db_proxy_endpoint_arn, db_proxy_endpoint_name, endpoint)
Bases:
object
Properties that describe an existing DB Proxy Endpoint.
- Parameters:
db_proxy_endpoint_arn (
str
) – DB Proxy Endpoint ARN.db_proxy_endpoint_name (
str
) – DB Proxy Endpoint Name.endpoint (
str
) – The endpoint that you can use to connect to the DB proxy.
- 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 database_proxy_endpoint_attributes = rds.DatabaseProxyEndpointAttributes( db_proxy_endpoint_arn="dbProxyEndpointArn", db_proxy_endpoint_name="dbProxyEndpointName", endpoint="endpoint" )
Attributes
- db_proxy_endpoint_arn
DB Proxy Endpoint ARN.
- db_proxy_endpoint_name
DB Proxy Endpoint Name.
- endpoint
The endpoint that you can use to connect to the DB proxy.