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: