@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.817Z") @Stability(value=Stable) public interface ScalingInterval extends software.amazon.jsii.JsiiSerializable
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() |
Number |
getChange()
The capacity adjustment to apply in this interval.
|
default Number |
getLower()
The lower bound of the interval.
|
default Number |
getUpper()
The upper bound of the interval.
|
@Stability(value=Stable) @NotNull Number getChange()
The number is interpreted differently based on AdjustmentType:
@Stability(value=Stable) @Nullable default Number getLower()
The scaling adjustment will be applied if the metric is higher than this value.
Default: Threshold automatically derived from neighbouring intervals
@Stability(value=Stable) @Nullable default Number getUpper()
The scaling adjustment will be applied if the metric is lower than this value.
Default: Threshold automatically derived from neighbouring intervals
@Stability(value=Stable) static ScalingInterval.Builder builder()
ScalingInterval.Builder of ScalingIntervalCopyright © 2022. All rights reserved.