interface DatabaseProxyAttributes
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RDS.DatabaseProxyAttributes |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#DatabaseProxyAttributes |
Java | software.amazon.awscdk.services.rds.DatabaseProxyAttributes |
Python | aws_cdk.aws_rds.DatabaseProxyAttributes |
TypeScript (source) | aws-cdk-lib » 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 { aws_ec2 as ec2 } from 'aws-cdk-lib';
import { aws_rds as rds } from 'aws-cdk-lib';
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.