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.
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
Remarks
If this parameter is not specified, the stickiness session lasts for the duration of the browser session.
PolicyName
The name of the policy.
public string? PolicyName { get; set; }
Property Value
Remarks
This name must be unique within the set of policies for this load balancer.