Class: Aws::ElasticLoadBalancingV2::Types::ListenerAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::ListenerAttribute
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Information about a listener attribute.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The name of the attribute.
-
#value ⇒ String
The value of the attribute.
Instance Attribute Details
#key ⇒ String
The name of the attribute.
The following attribute is supported by Network Load Balancers, and Gateway Load Balancers.
-
‘tcp.idle_timeout.seconds` - The tcp idle timeout value, in seconds. The valid range is 60-6000 seconds. The default is 350 seconds.
^
2154 2155 2156 2157 2158 2159 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2154 class ListenerAttribute < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the attribute.
2154 2155 2156 2157 2158 2159 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2154 class ListenerAttribute < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |