Class: Aws::SecurityHub::Types::AwsElbLbCookieStickinessPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsElbLbCookieStickinessPolicy
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsElbLbCookieStickinessPolicy data as a hash:
{
cookie_expiration_period: 1,
policy_name: "NonEmptyString",
}
Contains information about a stickiness policy that was created using
CreateLBCookieStickinessPolicy
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cookie_expiration_period ⇒ Integer
The amount of time, in seconds, after which the cookie is considered stale.
-
#policy_name ⇒ String
The name of the policy.
Instance Attribute Details
#cookie_expiration_period ⇒ Integer
The amount of time, in seconds, after which the cookie is considered stale. If an expiration period is not specified, the stickiness session lasts for the duration of the browser session.
4870 4871 4872 4873 4874 4875 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 4870 class AwsElbLbCookieStickinessPolicy < Struct.new( :cookie_expiration_period, :policy_name) SENSITIVE = [] include Aws::Structure end |
#policy_name ⇒ String
The name of the policy. The name must be unique within the set of policies for the load balancer.
4870 4871 4872 4873 4874 4875 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 4870 class AwsElbLbCookieStickinessPolicy < Struct.new( :cookie_expiration_period, :policy_name) SENSITIVE = [] include Aws::Structure end |