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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forDatabaseProxyEndpointProps
static final class
An implementation forDatabaseProxyEndpointProps
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.rds.DatabaseProxyEndpointOptions
getDbProxyEndpointName, getSecurityGroups, getTargetRole, getVpc, getVpcSubnets
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDbProxy
The DB proxy associated with the DB proxy endpoint. -
builder
- Returns:
- a
DatabaseProxyEndpointProps.Builder
ofDatabaseProxyEndpointProps
-