Class: Aws::GameLift::Types::GameServerGroupAutoScalingPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::GameServerGroupAutoScalingPolicy
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
**This data type is used with the Amazon GameLift Servers FleetIQ and game server groups.**
Configuration settings for intelligent automatic scaling that uses target tracking. These settings are used to add an Auto Scaling policy when creating the corresponding Auto Scaling group. After the Auto Scaling group is created, all updates to Auto Scaling policies, including changing this policy and adding or removing other policies, is done directly on the Auto Scaling group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#estimated_instance_warmup ⇒ Integer
Length of time, in seconds, it takes for a new instance to start new game server processes and register with Amazon GameLift Servers FleetIQ.
-
#target_tracking_configuration ⇒ Types::TargetTrackingConfiguration
Settings for a target-based scaling policy applied to Auto Scaling group.
Instance Attribute Details
#estimated_instance_warmup ⇒ Integer
Length of time, in seconds, it takes for a new instance to start new game server processes and register with Amazon GameLift Servers FleetIQ. Specifying a warm-up time can be useful, particularly with game servers that take a long time to start up, because it avoids prematurely starting new instances.
6504 6505 6506 6507 6508 6509 |
# File 'lib/aws-sdk-gamelift/types.rb', line 6504 class GameServerGroupAutoScalingPolicy < Struct.new( :estimated_instance_warmup, :target_tracking_configuration) SENSITIVE = [] include Aws::Structure end |
#target_tracking_configuration ⇒ Types::TargetTrackingConfiguration
Settings for a target-based scaling policy applied to Auto Scaling group. These settings are used to create a target-based policy that tracks the Amazon GameLift Servers 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.
6504 6505 6506 6507 6508 6509 |
# File 'lib/aws-sdk-gamelift/types.rb', line 6504 class GameServerGroupAutoScalingPolicy < Struct.new( :estimated_instance_warmup, :target_tracking_configuration) SENSITIVE = [] include Aws::Structure end |