Class: Aws::ElasticLoadBalancing::Types::AdditionalAttribute

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

Overview

Information about additional load balancer attributes.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The name of the attribute.

The following attribute is supported.

  • ‘elb.http.desyncmitigationmode` - Determines how the load balancer handles requests that might pose a security risk to your application. The possible values are `monitor`, `defensive`, and `strictest`. The default is `defensive`.

^

Returns:

  • (String)


134
135
136
137
138
139
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 134

class AdditionalAttribute < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

This value of the attribute.

Returns:

  • (String)


134
135
136
137
138
139
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 134

class AdditionalAttribute < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end