Class: Aws::AppMesh::Types::WeightedTarget
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::WeightedTarget
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass WeightedTarget data as a hash:
{
virtual_node: "ResourceName", # required
weight: 1, # required
}
An object that represents a target and its relative weight. Traffic is distributed across targets according to their relative weight. For example, a weighted target with a relative weight of 50 receives five times as much traffic as one with a relative weight of 10. The total weight for all targets combined must be less than or equal to 100.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#virtual_node ⇒ String
The virtual node to associate with the weighted target.
-
#weight ⇒ Integer
The relative weight of the weighted target.
Instance Attribute Details
#virtual_node ⇒ String
The virtual node to associate with the weighted target.
10350 10351 10352 10353 10354 10355 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 10350 class WeightedTarget < Struct.new( :virtual_node, :weight) SENSITIVE = [] include Aws::Structure end |
#weight ⇒ Integer
The relative weight of the weighted target.
10350 10351 10352 10353 10354 10355 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 10350 class WeightedTarget < Struct.new( :virtual_node, :weight) SENSITIVE = [] include Aws::Structure end |