Interface CfnContinuousDeploymentPolicy.ISessionStickinessConfigProperty
Session stickiness provides the ability to define multiple requests from a single viewer as a single session.
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ISessionStickinessConfigProperty
Syntax (vb)
Public Interface ISessionStickinessConfigProperty
Remarks
This prevents the potentially inconsistent experience of sending some of a given user's requests to your staging distribution, while others are sent to your primary distribution. Define the session duration using TTL values.
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.CloudFront;
var sessionStickinessConfigProperty = new SessionStickinessConfigProperty {
IdleTtl = 123,
MaximumTtl = 123
};
Synopsis
Properties
Idle |
The amount of time after which you want sessions to cease if no requests are received. |
Maximum |
The maximum amount of time to consider requests from the viewer as being part of the same session. |
Properties
IdleTtl
The amount of time after which you want sessions to cease if no requests are received.
double IdleTtl { get; }
Property Value
System.
Remarks
Allowed values are 300–3600 seconds (5–60 minutes).
MaximumTtl
The maximum amount of time to consider requests from the viewer as being part of the same session.
double MaximumTtl { get; }
Property Value
System.
Remarks
Allowed values are 300–3600 seconds (5–60 minutes).