Class: Aws::ElasticLoadBalancing::Types::LBCookieStickinessPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancing::Types::LBCookieStickinessPolicy
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancing/types.rb
Overview
Information about a policy for duration-based session stickiness.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cookie_expiration_period ⇒ Integer
The time period, in seconds, after which the cookie should be considered stale.
-
#policy_name ⇒ String
The name of the policy.
Instance Attribute Details
#cookie_expiration_period ⇒ Integer
The time period, in seconds, after which the cookie should be considered stale. If this parameter is not specified, the stickiness session lasts for the duration of the browser session.
1154 1155 1156 1157 1158 1159 |
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 1154 class LBCookieStickinessPolicy < Struct.new( :policy_name, :cookie_expiration_period) SENSITIVE = [] include Aws::Structure end |
#policy_name ⇒ String
The name of the policy. This name must be unique within the set of policies for this load balancer.
1154 1155 1156 1157 1158 1159 |
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 1154 class LBCookieStickinessPolicy < Struct.new( :policy_name, :cookie_expiration_period) SENSITIVE = [] include Aws::Structure end |