Interface CfnDBProxyTargetGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDBProxyTargetGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:46.927Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDBProxyTargetGroupPropsstatic final classAn implementation forCfnDBProxyTargetGroupProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectDisplays 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 theDBProxythat 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 theDBProxythat 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.Returns union: either
IResolvableorCfnDBProxyTargetGroup.ConnectionPoolConfigurationInfoFormatProperty- See Also:
-
getDbClusterIdentifiers
One or more DB cluster identifiers.- See Also:
-
getDbInstanceIdentifiers
One or more DB instance identifiers.- See Also:
-
builder
- Returns:
- a
CfnDBProxyTargetGroupProps.BuilderofCfnDBProxyTargetGroupProps
-