interface DBProxyEndpointReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RDS.DBProxyEndpointReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrds#DBProxyEndpointReference |
Java | software.amazon.awscdk.interfaces.rds.DBProxyEndpointReference |
Python | aws_cdk.interfaces.aws_rds.DBProxyEndpointReference |
TypeScript | aws-cdk-lib » interfaces » aws_rds » DBProxyEndpointReference |
A reference to a DBProxyEndpoint resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rds as interfaces_rds } from 'aws-cdk-lib/interfaces';
const dBProxyEndpointReference: interfaces_rds.DBProxyEndpointReference = {
dbProxyEndpointArn: 'dbProxyEndpointArn',
dbProxyEndpointName: 'dbProxyEndpointName',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The ARN of the DBProxyEndpoint resource. |
| db | string | The DBProxyEndpointName of the DBProxyEndpoint resource. |
dbProxyEndpointArn
Type:
string
The ARN of the DBProxyEndpoint resource.
dbProxyEndpointName
Type:
string
The DBProxyEndpointName of the DBProxyEndpoint resource.

.NET
Go
Java
Python
TypeScript