Interface CfnDBProxyEndpointMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDBProxyEndpointMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:04.371Z") @Stability(Stable) public interface CfnDBProxyEndpointMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnDBProxyEndpointPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.rds.*;
 CfnDBProxyEndpointMixinProps cfnDBProxyEndpointMixinProps = CfnDBProxyEndpointMixinProps.builder()
         .dbProxyEndpointName("dbProxyEndpointName")
         .dbProxyName("dbProxyName")
         .endpointNetworkType("endpointNetworkType")
         .tags(List.of(TagFormatProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .targetRole("targetRole")
         .vpcSecurityGroupIds(List.of("vpcSecurityGroupIds"))
         .vpcSubnetIds(List.of("vpcSubnetIds"))
         .build();
 

See Also: