interface DatabaseProxyAttributes
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RDS.DatabaseProxyAttributes |
Java | software.amazon.awscdk.services.rds.DatabaseProxyAttributes |
Python | aws_cdk.aws_rds.DatabaseProxyAttributes |
TypeScript (source) | @aws-cdk/aws-rds » DatabaseProxyAttributes |
Properties that describe an existing DB Proxy.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ec2 from '@aws-cdk/aws-ec2';
import * as rds from '@aws-cdk/aws-rds';
declare const securityGroup: ec2.SecurityGroup;
const databaseProxyAttributes: rds.DatabaseProxyAttributes = {
dbProxyArn: 'dbProxyArn',
dbProxyName: 'dbProxyName',
endpoint: 'endpoint',
securityGroups: [securityGroup],
};
Properties
Name | Type | Description |
---|---|---|
db | string | DB Proxy ARN. |
db | string | DB Proxy Name. |
endpoint | string | Endpoint. |
security | ISecurity [] | The security groups of the instance. |
dbProxyArn
Type:
string
DB Proxy ARN.
dbProxyName
Type:
string
DB Proxy Name.
endpoint
Type:
string
Endpoint.
securityGroups
Type:
ISecurity
[]
The security groups of the instance.