Interface CfnDBProxyMixinProps

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

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

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.*;
 CfnDBProxyMixinProps cfnDBProxyMixinProps = CfnDBProxyMixinProps.builder()
         .auth(List.of(AuthFormatProperty.builder()
                 .authScheme("authScheme")
                 .clientPasswordAuthType("clientPasswordAuthType")
                 .description("description")
                 .iamAuth("iamAuth")
                 .secretArn("secretArn")
                 .build()))
         .dbProxyName("dbProxyName")
         .debugLogging(false)
         .defaultAuthScheme("defaultAuthScheme")
         .endpointNetworkType("endpointNetworkType")
         .engineFamily("engineFamily")
         .idleClientTimeout(123)
         .requireTls(false)
         .roleArn("roleArn")
         .tags(List.of(TagFormatProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .targetConnectionNetworkType("targetConnectionNetworkType")
         .vpcSecurityGroupIds(List.of("vpcSecurityGroupIds"))
         .vpcSubnetIds(List.of("vpcSubnetIds"))
         .build();
 

See Also: