Class: Aws::ElasticLoadBalancing::Types::AdditionalAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancing::Types::AdditionalAttribute
- Defined in:
- gems/aws-sdk-elasticloadbalancing/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 aremonitor
,defensive
, andstrictest
. The default isdefensive
.
^
134 135 136 137 138 139 |
# File 'gems/aws-sdk-elasticloadbalancing/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 'gems/aws-sdk-elasticloadbalancing/lib/aws-sdk-elasticloadbalancing/types.rb', line 134 class AdditionalAttribute < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |