Interface CfnGameServerGroup.AutoScalingPolicyProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGameServerGroup.AutoScalingPolicyProperty.Jsii$Proxy
Enclosing class:
CfnGameServerGroup

@Stability(Stable) public static interface CfnGameServerGroup.AutoScalingPolicyProperty extends software.amazon.jsii.JsiiSerializable
This data type is used with the GameLift FleetIQ and game server groups..

Configuration settings for intelligent automatic scaling that uses target tracking. 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.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.gamelift.*;
 AutoScalingPolicyProperty autoScalingPolicyProperty = AutoScalingPolicyProperty.builder()
         .targetTrackingConfiguration(TargetTrackingConfigurationProperty.builder()
                 .targetValue(123)
                 .build())
         // the properties below are optional
         .estimatedInstanceWarmup(123)
         .build();
 

See Also: