Class: Aws::AppMesh::Types::TcpTimeout
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::TcpTimeout
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass TcpTimeout data as a hash:
{
idle: {
unit: "s", # accepts s, ms
value: 1,
},
}
An object that represents types of timeouts.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#idle ⇒ Types::Duration
An object that represents an idle timeout.
Instance Attribute Details
#idle ⇒ Types::Duration
An object that represents an idle timeout. An idle timeout bounds the amount of time that a connection may be idle. The default value is none.
6619 6620 6621 6622 6623 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 6619 class TcpTimeout < Struct.new( :idle) SENSITIVE = [] include Aws::Structure end |