@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-22T19:35:48.015Z")
public interface ScalingInterval
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.autoscaling.*; ScalingInterval scalingInterval = ScalingInterval.builder() .change(123) // the properties below are optional .lower(123) .upper(123) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
ScalingInterval.Builder
A builder for
ScalingInterval |
static class |
ScalingInterval.Jsii$Proxy
An implementation for
ScalingInterval |
Modifier and Type | Method and Description |
---|---|
static ScalingInterval.Builder |
builder() |
java.lang.Number |
getChange()
The capacity adjustment to apply in this interval.
|
default java.lang.Number |
getLower()
The lower bound of the interval.
|
default java.lang.Number |
getUpper()
The upper bound of the interval.
|
java.lang.Number getChange()
The number is interpreted differently based on AdjustmentType:
default java.lang.Number getLower()
The scaling adjustment will be applied if the metric is higher than this value.
Default: Threshold automatically derived from neighbouring intervals
default java.lang.Number getUpper()
The scaling adjustment will be applied if the metric is lower than this value.
Default: Threshold automatically derived from neighbouring intervals
static ScalingInterval.Builder builder()
ScalingInterval.Builder
of ScalingInterval