Class: Aws::AppMesh::Types::TcpRoute
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::TcpRoute
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass TcpRoute data as a hash:
{
action: { # required
weighted_targets: [ # required
{
virtual_node: "ResourceName", # required
weight: 1, # required
},
],
},
timeout: {
idle: {
unit: "s", # accepts s, ms
value: 1,
},
},
}
An object that represents a TCP route type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action ⇒ Types::TcpRouteAction
The action to take if a match is determined.
-
#timeout ⇒ Types::TcpTimeout
An object that represents types of timeouts.
Instance Attribute Details
#action ⇒ Types::TcpRouteAction
The action to take if a match is determined.
6610 6611 6612 6613 6614 6615 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 6610 class TcpRoute < Struct.new( :action, :timeout) SENSITIVE = [] include Aws::Structure end |
#timeout ⇒ Types::TcpTimeout
An object that represents types of timeouts.
6610 6611 6612 6613 6614 6615 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 6610 class TcpRoute < Struct.new( :action, :timeout) SENSITIVE = [] include Aws::Structure end |