Class: Aws::GameLift::Types::TargetTrackingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::TargetTrackingConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
**This data type is used with the Amazon GameLift FleetIQ and game server groups.**
Settings for a target-based scaling policy as part of a
- GameServerGroupAutoScalingPolicy][1
-
. These settings are used to
create a target-based policy that tracks the Amazon GameLift FleetIQ metric ‘“PercentUtilizedGameServers”` and specifies a target value for the metric. As player usage changes, the policy triggers to adjust the game server group capacity so that the metric returns to the target value.
[1]: docs.aws.amazon.com/gamelift/latest/apireference/API_GameServerGroupAutoScalingPolicy.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#target_value ⇒ Float
Desired value to use with a game server group target-based scaling policy.
Instance Attribute Details
#target_value ⇒ Float
Desired value to use with a game server group target-based scaling policy.
10904 10905 10906 10907 10908 |
# File 'lib/aws-sdk-gamelift/types.rb', line 10904 class TargetTrackingConfiguration < Struct.new( :target_value) SENSITIVE = [] include Aws::Structure end |