Class: Aws::ElasticLoadBalancing::Types::AdditionalAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancing::Types::AdditionalAttribute
- 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
-
#key ⇒ String
The name of the attribute.
-
#value ⇒ String
This value of the attribute.
Instance Attribute Details
#key ⇒ String
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`.
^
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 |
#value ⇒ String
This value of the attribute.
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 |