interface TargetGroupStickinessConfigProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.ElasticLoadBalancingV2.CfnListener.TargetGroupStickinessConfigProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancingv2#CfnListener_TargetGroupStickinessConfigProperty | 
|  Java | software.amazon.awscdk.services.elasticloadbalancingv2.CfnListener.TargetGroupStickinessConfigProperty | 
|  Python | aws_cdk.aws_elasticloadbalancingv2.CfnListener.TargetGroupStickinessConfigProperty | 
|  TypeScript | aws-cdk-lib»aws_elasticloadbalancingv2»CfnListener»TargetGroupStickinessConfigProperty | 
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 { aws_elasticloadbalancingv2 as elbv2 } from 'aws-cdk-lib';
const targetGroupStickinessConfigProperty: elbv2.CfnListener.TargetGroupStickinessConfigProperty = {
  durationSeconds: 123,
  enabled: false,
};
Properties
| Name | Type | Description | 
|---|---|---|
| duration | number | [Application Load Balancers] The time period, in seconds, during which requests from a client should be routed to the same target group. | 
| enabled? | boolean | IResolvable | Indicates whether target group stickiness is enabled. | 
durationSeconds?
Type:
number
(optional)
[Application Load Balancers] 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). You must specify this value when enabling target group stickiness.
enabled?
Type:
boolean | IResolvable
(optional)
Indicates whether target group stickiness is enabled.
