Interface CfnListenerRule.TargetGroupStickinessConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnListenerRule.TargetGroupStickinessConfigProperty.Jsii$Proxy
- Enclosing class:
CfnListenerRule
@Stability(Stable)
public static interface CfnListenerRule.TargetGroupStickinessConfigProperty
extends software.amazon.jsii.JsiiSerializable
Information about the target group stickiness for a rule.
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.elasticloadbalancingv2.*;
TargetGroupStickinessConfigProperty targetGroupStickinessConfigProperty = TargetGroupStickinessConfigProperty.builder()
.durationSeconds(123)
.enabled(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnListenerRule.TargetGroupStickinessConfigPropertystatic final classAn implementation forCfnListenerRule.TargetGroupStickinessConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDurationSeconds
The time period, in seconds, during which requests from a client should be routed to the same target group.The range is 1-604800 seconds (7 days).
- See Also:
-
getEnabled
Indicates whether target group stickiness is enabled.- See Also:
-
builder
-