Show / Hide Table of Contents

Class CfnListener.TargetGroupStickinessConfigProperty

Information about the target group stickiness for a rule.

Inheritance
System.Object
CfnListener.TargetGroupStickinessConfigProperty
Implements
CfnListener.ITargetGroupStickinessConfigProperty
Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.AWS.ElasticLoadBalancingV2.dll
Syntax (csharp)
public class TargetGroupStickinessConfigProperty : Object, CfnListener.ITargetGroupStickinessConfigProperty
Syntax (vb)
Public Class TargetGroupStickinessConfigProperty
    Inherits Object
    Implements CfnListener.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

Constructors

TargetGroupStickinessConfigProperty()

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.

Constructors

TargetGroupStickinessConfigProperty()

public TargetGroupStickinessConfigProperty()

Properties

DurationSeconds

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

public Nullable<double> DurationSeconds { get; set; }
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.

public object Enabled { get; set; }
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

Implements

CfnListener.ITargetGroupStickinessConfigProperty
Back to top Generated by DocFX