Class: Aws::ElasticLoadBalancing::Types::CreateAppCookieStickinessPolicyInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticloadbalancing/types.rb

Overview

Note:

When making an API call, you may pass CreateAppCookieStickinessPolicyInput data as a hash:

{
  load_balancer_name: "AccessPointName", # required
  policy_name: "PolicyName", # required
  cookie_name: "CookieName", # required
}

Contains the parameters for CreateAppCookieStickinessPolicy.

Instance Attribute Summary collapse

Instance Attribute Details

The name of the application cookie used for stickiness.

Returns:

  • (String)


520
521
522
523
524
525
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 520

class CreateAppCookieStickinessPolicyInput < Struct.new(
  :load_balancer_name,
  :policy_name,
  :cookie_name)
  include Aws::Structure
end

#load_balancer_nameString

The name of the load balancer.

Returns:

  • (String)


520
521
522
523
524
525
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 520

class CreateAppCookieStickinessPolicyInput < Struct.new(
  :load_balancer_name,
  :policy_name,
  :cookie_name)
  include Aws::Structure
end

#policy_nameString

The name of the policy being created. Policy names must consist of alphanumeric characters and dashes (-). This name must be unique within the set of policies for this load balancer.

Returns:

  • (String)


520
521
522
523
524
525
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 520

class CreateAppCookieStickinessPolicyInput < Struct.new(
  :load_balancer_name,
  :policy_name,
  :cookie_name)
  include Aws::Structure
end