Interface DatabaseProxyEndpointProps

All Superinterfaces:
DatabaseProxyEndpointOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DatabaseProxyEndpointProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-15T14:52:05.533Z") @Stability(Stable) public interface DatabaseProxyEndpointProps extends software.amazon.jsii.JsiiSerializable, DatabaseProxyEndpointOptions
Construction properties for a DatabaseProxyEndpoint.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ec2.*;
 import software.amazon.awscdk.services.rds.*;
 DatabaseProxy databaseProxy;
 SecurityGroup securityGroup;
 Subnet subnet;
 SubnetFilter subnetFilter;
 Vpc vpc;
 DatabaseProxyEndpointProps databaseProxyEndpointProps = DatabaseProxyEndpointProps.builder()
         .dbProxy(databaseProxy)
         .vpc(vpc)
         // the properties below are optional
         .dbProxyEndpointName("dbProxyEndpointName")
         .securityGroups(List.of(securityGroup))
         .targetRole(ProxyEndpointTargetRole.READ_WRITE)
         .vpcSubnets(SubnetSelection.builder()
                 .availabilityZones(List.of("availabilityZones"))
                 .onePerAz(false)
                 .subnetFilters(List.of(subnetFilter))
                 .subnetGroupName("subnetGroupName")
                 .subnets(List.of(subnet))
                 .subnetType(SubnetType.PRIVATE_ISOLATED)
                 .build())
         .build();