Class: Aws::VPCLattice::Types::WeightedTargetGroup

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb

Overview

Describes the weight of a target group.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#target_group_identifierString

The ID or Amazon Resource Name (ARN) of the target group.

Returns:

  • (String)


3930
3931
3932
3933
3934
3935
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 3930

class WeightedTargetGroup < Struct.new(
  :target_group_identifier,
  :weight)
  SENSITIVE = []
  include Aws::Structure
end

#weightInteger

Only required if you specify multiple target groups for a forward action. The "weight" determines how requests are distributed to the target group. For example, if you specify two target groups, each with a weight of 10, each target group receives half the requests. If you specify two target groups, one with a weight of 10 and the other with a weight of 20, the target group with a weight of 20 receives twice as many requests as the other target group. If there's only one target group specified, then the default value is 100.

Returns:

  • (Integer)


3930
3931
3932
3933
3934
3935
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 3930

class WeightedTargetGroup < Struct.new(
  :target_group_identifier,
  :weight)
  SENSITIVE = []
  include Aws::Structure
end