Interface StepScalingPolicyProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:37.381Z") @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.services.applicationautoscaling.*;
 import software.amazon.awscdk.services.cloudwatch.*;
 import software.amazon.awscdk.core.*;
 Metric metric;
 ScalableTarget scalableTarget;
 StepScalingPolicyProps stepScalingPolicyProps = StepScalingPolicyProps.builder()
         .metric(metric)
         .scalingSteps(List.of(ScalingInterval.builder()
                 .change(123)
                 // the properties below are optional
                 .lower(123)
                 .upper(123)
                 .build()))
         .scalingTarget(scalableTarget)
         // the properties below are optional
         .adjustmentType(AdjustmentType.CHANGE_IN_CAPACITY)
         .cooldown(Duration.minutes(30))
         .datapointsToAlarm(123)
         .evaluationPeriods(123)
         .metricAggregationType(MetricAggregationType.AVERAGE)
         .minAdjustmentMagnitude(123)
         .build();