@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.421Z") @Stability(value=Stable) public interface CfnDBProxyTargetGroupProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnDBProxyTargetGroupProps cfnDBProxyTargetGroupProps = CfnDBProxyTargetGroupProps.builder()
.dbProxyName("dbProxyName")
.targetGroupName("targetGroupName")
// the properties below are optional
.connectionPoolConfigurationInfo(ConnectionPoolConfigurationInfoFormatProperty.builder()
.connectionBorrowTimeout(123)
.initQuery("initQuery")
.maxConnectionsPercent(123)
.maxIdleConnectionsPercent(123)
.sessionPinningFilters(List.of("sessionPinningFilters"))
.build())
.dbClusterIdentifiers(List.of("dbClusterIdentifiers"))
.dbInstanceIdentifiers(List.of("dbInstanceIdentifiers"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDBProxyTargetGroupProps.Builder
A builder for
CfnDBProxyTargetGroupProps |
static class |
CfnDBProxyTargetGroupProps.Jsii$Proxy
An implementation for
CfnDBProxyTargetGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDBProxyTargetGroupProps.Builder |
builder() |
default Object |
getConnectionPoolConfigurationInfo()
Settings that control the size and behavior of the connection pool associated with a `DBProxyTargetGroup` .
|
default List<String> |
getDbClusterIdentifiers()
One or more DB cluster identifiers.
|
default List<String> |
getDbInstanceIdentifiers()
One or more DB instance identifiers.
|
String |
getDbProxyName()
The identifier of the `DBProxy` that is associated with the `DBProxyTargetGroup` .
|
String |
getTargetGroupName()
The identifier for the target group.
|
@Stability(value=Stable) @NotNull String getDbProxyName()
@Stability(value=Stable) @NotNull String getTargetGroupName()
Currently, this property must be set to
default.
@Stability(value=Stable) @Nullable default Object getConnectionPoolConfigurationInfo()
@Stability(value=Stable) @Nullable default List<String> getDbClusterIdentifiers()
@Stability(value=Stable) @Nullable default List<String> getDbInstanceIdentifiers()
@Stability(value=Stable) static CfnDBProxyTargetGroupProps.Builder builder()
CfnDBProxyTargetGroupProps.Builder of CfnDBProxyTargetGroupPropsCopyright © 2022. All rights reserved.