Class: Aws::EC2::Types::DefaultConnectionTrackingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::DefaultConnectionTrackingConfiguration
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Indicates default conntrack information for the instance type. For more information, see Connection tracking timeouts in the Amazon EC2 User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_tcp_established_timeout ⇒ Integer
Default timeout (in seconds) for idle TCP connections in an established state.
-
#default_udp_stream_timeout ⇒ Integer
Default timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction.
-
#default_udp_timeout ⇒ Integer
Default timeout (in seconds) for idle UDP flows that have seen traffic only in a single direction or a single request-response transaction.
Instance Attribute Details
#default_tcp_established_timeout ⇒ Integer
Default timeout (in seconds) for idle TCP connections in an established state.
17598 17599 17600 17601 17602 17603 17604 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 17598 class DefaultConnectionTrackingConfiguration < Struct.new( :default_tcp_established_timeout, :default_udp_timeout, :default_udp_stream_timeout) SENSITIVE = [] include Aws::Structure end |
#default_udp_stream_timeout ⇒ Integer
Default timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction.
17598 17599 17600 17601 17602 17603 17604 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 17598 class DefaultConnectionTrackingConfiguration < Struct.new( :default_tcp_established_timeout, :default_udp_timeout, :default_udp_stream_timeout) SENSITIVE = [] include Aws::Structure end |
#default_udp_timeout ⇒ Integer
Default timeout (in seconds) for idle UDP flows that have seen traffic only in a single direction or a single request-response transaction.
17598 17599 17600 17601 17602 17603 17604 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 17598 class DefaultConnectionTrackingConfiguration < Struct.new( :default_tcp_established_timeout, :default_udp_timeout, :default_udp_stream_timeout) SENSITIVE = [] include Aws::Structure end |