interface DBProxyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RDS.DBProxyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrds#DBProxyReference |
Java | software.amazon.awscdk.interfaces.rds.DBProxyReference |
Python | aws_cdk.interfaces.aws_rds.DBProxyReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_rds } from 'aws-cdk-lib/interfaces';
const dBProxyReference: interfaces_aws_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