Interface CfnDBProxyTargetGroup.ConnectionPoolConfigurationInfoFormatProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDBProxyTargetGroup.ConnectionPoolConfigurationInfoFormatProperty.Jsii$Proxy
Enclosing class:
CfnDBProxyTargetGroup

@Stability(Stable) public static interface CfnDBProxyTargetGroup.ConnectionPoolConfigurationInfoFormatProperty extends software.amazon.jsii.JsiiSerializable
Specifies the settings that control the size and behavior of the connection pool associated with a DBProxyTargetGroup .

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.rds.*;
 ConnectionPoolConfigurationInfoFormatProperty connectionPoolConfigurationInfoFormatProperty = ConnectionPoolConfigurationInfoFormatProperty.builder()
         .connectionBorrowTimeout(123)
         .initQuery("initQuery")
         .maxConnectionsPercent(123)
         .maxIdleConnectionsPercent(123)
         .sessionPinningFilters(List.of("sessionPinningFilters"))
         .build();
 

See Also: