Show / Hide Table of Contents

Interface CfnListener.ITargetGroupStickinessConfigProperty

Information about the target group stickiness for a rule.

Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.AWS.ElasticLoadBalancingV2.dll
Syntax (csharp)
public interface ITargetGroupStickinessConfigProperty
Syntax (vb)
Public Interface ITargetGroupStickinessConfigProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-targetgroupstickinessconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ElasticLoadBalancingV2;

var targetGroupStickinessConfigProperty = new TargetGroupStickinessConfigProperty {
    DurationSeconds = 123,
    Enabled = false
};

Synopsis

Properties

DurationSeconds

The time period, in seconds, during which requests from a client should be routed to the same target group.

Enabled

Indicates whether target group stickiness is enabled.

Properties

DurationSeconds

The time period, in seconds, during which requests from a client should be routed to the same target group.

virtual Nullable<double> DurationSeconds { get; }
Property Value

System.Nullable<System.Double>

Remarks

The range is 1-604800 seconds (7 days).

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-targetgroupstickinessconfig.html#cfn-elasticloadbalancingv2-listener-targetgroupstickinessconfig-durationseconds

Enabled

Indicates whether target group stickiness is enabled.

virtual object Enabled { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-targetgroupstickinessconfig.html#cfn-elasticloadbalancingv2-listener-targetgroupstickinessconfig-enabled

Back to top Generated by DocFX