interface DBProxyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RDS.DBProxyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#DBProxyReference |
Java | software.amazon.awscdk.services.rds.DBProxyReference |
Python | aws_cdk.aws_rds.DBProxyReference |
TypeScript | aws-cdk-lib » aws_rds » DBProxyReference |
A reference to a DBProxy 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 rds } from 'aws-cdk-lib';
const dBProxyReference: rds.DBProxyReference = {
dbProxyArn: 'dbProxyArn',
dbProxyName: 'dbProxyName',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The ARN of the DBProxy resource. |
| db | string | The DBProxyName of the DBProxy resource. |
dbProxyArn
Type:
string
The ARN of the DBProxy resource.
dbProxyName
Type:
string
The DBProxyName of the DBProxy resource.

.NET
Go
Java
Python
TypeScript