Class: Aws::ElasticLoadBalancing::Types::ConnectionSettings

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 ConnectionSettings data as a hash:

{
  idle_timeout: 1, # required
}

Information about the ‘ConnectionSettings` attribute.

Instance Attribute Summary collapse

Instance Attribute Details

#idle_timeoutInteger

The time, in seconds, that the connection is allowed to be idle (no data has been sent over the connection) before it is closed by the load balancer.

Returns:

  • (Integer)


366
367
368
369
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 366

class ConnectionSettings < Struct.new(
  :idle_timeout)
  include Aws::Structure
end