Class: Aws::AppMesh::Types::HttpRouteAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::HttpRouteAction
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass HttpRouteAction data as a hash:
{
weighted_targets: [ # required
{
virtual_node: "ResourceName", # required
weight: 1, # required
},
],
}
An object that represents the action to take if a match is determined.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#weighted_targets ⇒ Array<Types::WeightedTarget>
An object that represents the targets that traffic is routed to when a request matches the route.
Instance Attribute Details
#weighted_targets ⇒ Array<Types::WeightedTarget>
An object that represents the targets that traffic is routed to when a request matches the route.
4340 4341 4342 4343 4344 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 4340 class HttpRouteAction < Struct.new( :weighted_targets) SENSITIVE = [] include Aws::Structure end |