AWS::RDS::DBProxyEndpointThe `AWS::RDS::DBProxyEndpoint` resource creates or updates a DB proxy endpoint. You can use custom proxy endpoints to access a proxy through a different VPC than the proxy's default VPC. For more information about RDS Proxy, see [AWS::RDS::DBProxy](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html) .
import { CfnDBProxyEndpoint } from 'aws-cdk-lib/aws-rds';Or use the module namespace:
import * as rds from 'aws-cdk-lib/aws-rds';
// rds.CfnDBProxyEndpointConfiguration passed to the constructor as CfnDBProxyEndpointProps.
dbProxyEndpointNameRequiredstringThe name of the DB proxy endpoint to create.
dbProxyNameRequiredstringThe name of the DB proxy associated with the DB proxy endpoint that you create.
vpcSubnetIdsRequiredstring | ISubnetRef[]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.
endpointNetworkTypeOptionalstringThe 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.
tagsOptionalTagFormatProperty[]An optional set of key-value pairs to associate arbitrary data of your choosing with the proxy.
targetRoleOptionalstringA value that indicates whether the DB proxy endpoint can be used for read/write or read-only operations.
vpcSecurityGroupIdsOptionalstring | ISecurityGroupRef[]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.
This L1 construct maps directly to the following CloudFormation resource type.
Everything you need to know about Amazon RDS on one page. HD quality, print-friendly.
Download Free Infographicaws-rdsAWS::RDS::DBProxyEndpoint