Interface CfnContainerFleetPropsMixin.ScalingPolicyProperty

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

@Stability(Stable) public static interface CfnContainerFleetPropsMixin.ScalingPolicyProperty extends software.amazon.jsii.JsiiSerializable
Rule that controls how a fleet is scaled.

Scaling policies are uniquely identified by the combination of name and fleet ID.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.gamelift.*;
 ScalingPolicyProperty scalingPolicyProperty = ScalingPolicyProperty.builder()
         .comparisonOperator("comparisonOperator")
         .evaluationPeriods(123)
         .metricName("metricName")
         .name("name")
         .policyType("policyType")
         .scalingAdjustment(123)
         .scalingAdjustmentType("scalingAdjustmentType")
         .targetConfiguration(TargetConfigurationProperty.builder()
                 .targetValue(123)
                 .build())
         .threshold(123)
         .build();
 

See Also: