interface CfnDBProxyEndpointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins.CfnDBProxyEndpointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/mixins#CfnDBProxyEndpointMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.rds.mixins.CfnDBProxyEndpointMixinProps |
Python | aws_cdk.mixins_preview.aws_rds.mixins.CfnDBProxyEndpointMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_rds » mixins » CfnDBProxyEndpointMixinProps |
Properties for CfnDBProxyEndpointPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxyendpoint.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as rds_mixins } from '@aws-cdk/mixins-preview/aws-rds';
const cfnDBProxyEndpointMixinProps: rds_mixins.CfnDBProxyEndpointMixinProps = {
dbProxyEndpointName: 'dbProxyEndpointName',
dbProxyName: 'dbProxyName',
endpointNetworkType: 'endpointNetworkType',
tags: [{
key: 'key',
value: 'value',
}],
targetRole: 'targetRole',
vpcSecurityGroupIds: ['vpcSecurityGroupIds'],
vpcSubnetIds: ['vpcSubnetIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The name of the DB proxy endpoint to create. |
| db | string | The name of the DB proxy associated with the DB proxy endpoint that you create. |
| endpoint | string | The network type of the DB proxy endpoint. |
| tags? | Tag[] | An optional set of key-value pairs to associate arbitrary data of your choosing with the proxy. |
| target | string | A value that indicates whether the DB proxy endpoint can be used for read/write or read-only operations. |
| vpc | string[] | The VPC security group IDs for the DB proxy endpoint that you create. |
| vpc | string[] | The VPC subnet IDs for the DB proxy endpoint that you create. |
dbProxyEndpointName?
Type:
string
(optional)
The name of the DB proxy endpoint to create.
dbProxyName?
Type:
string
(optional)
The name of the DB proxy associated with the DB proxy endpoint that you create.
endpointNetworkType?
Type:
string
(optional)
The network type of the DB proxy endpoint.
The network type determines the IP version that the proxy endpoint supports.
Valid values:
IPV4- The proxy endpoint supports IPv4 only.IPV6- The proxy endpoint supports IPv6 only.DUAL- The proxy endpoint supports both IPv4 and IPv6.
tags?
Type:
Tag[]
(optional)
An optional set of key-value pairs to associate arbitrary data of your choosing with the proxy.
targetRole?
Type:
string
(optional)
A value that indicates whether the DB proxy endpoint can be used for read/write or read-only operations.
vpcSecurityGroupIds?
Type:
string[]
(optional)
The VPC security group IDs for the DB proxy endpoint that you create.
You can specify a different set of security group IDs than for the original DB proxy. The default is the default security group for the VPC.
vpcSubnetIds?
Type:
string[]
(optional)
The VPC subnet IDs for the DB proxy endpoint that you create.
You can specify a different set of subnet IDs than for the original DB proxy.

.NET
Go
Java
Python
TypeScript