Table of Contents

Class CfnLoadBalancer.LBCookieStickinessPolicyProperty

Namespace
Amazon.CDK.AWS.ElasticLoadBalancing
Assembly
Amazon.CDK.AWS.ElasticLoadBalancing.dll

Specifies a policy for duration-based session stickiness for your Classic Load Balancer.

public class CfnLoadBalancer.LBCookieStickinessPolicyProperty : CfnLoadBalancer.ILBCookieStickinessPolicyProperty
Inheritance
CfnLoadBalancer.LBCookieStickinessPolicyProperty
Implements
Inherited Members

Examples

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

             var lBCookieStickinessPolicyProperty = new LBCookieStickinessPolicyProperty {
                 CookieExpirationPeriod = "cookieExpirationPeriod",
                 PolicyName = "policyName"
             };

Remarks

To associate a policy with a listener, use the PolicyNames property for the listener.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-LBCookieStickinessPolicy.html

ExampleMetadata: fixture=_generated

Constructors

LBCookieStickinessPolicyProperty()

public LBCookieStickinessPolicyProperty()

Properties

CookieExpirationPeriod

The time period, in seconds, after which the cookie should be considered stale.

public string? CookieExpirationPeriod { get; set; }

Property Value

string

Remarks

PolicyName

The name of the policy.

public string? PolicyName { get; set; }

Property Value

string

Remarks