Interface CfnDBProxyTargetGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDBProxyTargetGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:04.286Z")
@Stability(Stable)
public interface CfnDBProxyTargetGroupProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDBProxyTargetGroup
.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDBProxyTargetGroupProps
static final class
An implementation forCfnDBProxyTargetGroupProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Displays the settings that control the size and behavior of the connection pool associated with aDBProxyTarget
.One or more DB cluster identifiers.One or more DB instance identifiers.The identifier of theDBProxy
that is associated with theDBProxyTargetGroup
.The identifier for the target group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDbProxyName
The identifier of theDBProxy
that is associated with theDBProxyTargetGroup
.- See Also:
-
getTargetGroupName
The identifier for the target group.Currently, this property must be set to
default
.- See Also:
-
getConnectionPoolConfigurationInfo
Displays the settings that control the size and behavior of the connection pool associated with aDBProxyTarget
.- See Also:
-
getDbClusterIdentifiers
One or more DB cluster identifiers.- See Also:
-
getDbInstanceIdentifiers
One or more DB instance identifiers.- See Also:
-
builder
- Returns:
- a
CfnDBProxyTargetGroupProps.Builder
ofCfnDBProxyTargetGroupProps
-