aws-cdk-lib.aws_rds.DatabaseProxyAttributes

interface DatabaseProxyAttributes

LanguageType name
.NETAmazon.CDK.AWS.RDS.DatabaseProxyAttributes
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrds#DatabaseProxyAttributes
Javasoftware.amazon.awscdk.services.rds.DatabaseProxyAttributes
Pythonaws_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

NameTypeDescription
dbProxyArnstringDB Proxy ARN.
dbProxyNamestringDB Proxy Name.
endpointstringEndpoint.
securityGroupsISecurityGroup[]The security groups of the instance.

dbProxyArn

Type: string

DB Proxy ARN.


dbProxyName

Type: string

DB Proxy Name.


endpoint

Type: string

Endpoint.


securityGroups

Type: ISecurityGroup[]

The security groups of the instance.