Interface CfnDBProxyTargetGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDBProxyTargetGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:04.377Z")
@Stability(Stable)
public interface CfnDBProxyTargetGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDBProxyTargetGroupPropsMixin.
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.*;
CfnDBProxyTargetGroupMixinProps cfnDBProxyTargetGroupMixinProps = CfnDBProxyTargetGroupMixinProps.builder()
.connectionPoolConfigurationInfo(ConnectionPoolConfigurationInfoFormatProperty.builder()
.connectionBorrowTimeout(123)
.initQuery("initQuery")
.maxConnectionsPercent(123)
.maxIdleConnectionsPercent(123)
.sessionPinningFilters(List.of("sessionPinningFilters"))
.build())
.dbClusterIdentifiers(List.of("dbClusterIdentifiers"))
.dbInstanceIdentifiers(List.of("dbInstanceIdentifiers"))
.dbProxyName("dbProxyName")
.targetGroupName("targetGroupName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDBProxyTargetGroupMixinPropsstatic final classAn implementation forCfnDBProxyTargetGroupMixinProps -
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.default ObjectThe identifier of theDBProxythat is associated with theDBProxyTargetGroup.default StringThe identifier for the target group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionPoolConfigurationInfo
Displays the settings that control the size and behavior of the connection pool associated with aDBProxyTarget.Returns union: either
IResolvableorCfnDBProxyTargetGroupPropsMixin.ConnectionPoolConfigurationInfoFormatProperty- See Also:
-
getDbClusterIdentifiers
One or more DB cluster identifiers.Returns union: Listinvalid input: '<'either
StringorIDBClusterRef>- See Also:
-
getDbInstanceIdentifiers
One or more DB instance identifiers.- See Also:
-
getDbProxyName
The identifier of theDBProxythat is associated with theDBProxyTargetGroup.Returns union: either
StringorIDBProxyRef- See Also:
-
getTargetGroupName
The identifier for the target group.Currently, this property must be set to
default.- See Also:
-
builder
-