Interface StepScalingPolicyProps

All Superinterfaces:
BasicStepScalingPolicyProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
StepScalingPolicyProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:13.048Z") @Stability(Stable) public interface StepScalingPolicyProps extends software.amazon.jsii.JsiiSerializable, BasicStepScalingPolicyProps
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.autoscaling.*;
 import software.amazon.awscdk.services.cloudwatch.*;
 AutoScalingGroup autoScalingGroup;
 Metric metric;
 StepScalingPolicyProps stepScalingPolicyProps = StepScalingPolicyProps.builder()
         .autoScalingGroup(autoScalingGroup)
         .metric(metric)
         .scalingSteps(List.of(ScalingInterval.builder()
                 .change(123)
                 // the properties below are optional
                 .lower(123)
                 .upper(123)
                 .build()))
         // the properties below are optional
         .adjustmentType(AdjustmentType.CHANGE_IN_CAPACITY)
         .cooldown(Duration.minutes(30))
         .datapointsToAlarm(123)
         .estimatedInstanceWarmup(Duration.minutes(30))
         .evaluationPeriods(123)
         .metricAggregationType(MetricAggregationType.AVERAGE)
         .minAdjustmentMagnitude(123)
         .build();