Interface CfnListener.TargetGroupStickinessConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnListener.TargetGroupStickinessConfigProperty.Jsii$Proxy
- Enclosing class:
CfnListener
@Stability(Stable)
public static interface CfnListener.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 class
A builder forCfnListener.TargetGroupStickinessConfigProperty
static final class
An implementation forCfnListener.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
-