@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:03.414Z") @Stability(value=Experimental) 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.common.*;
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()
(experimental) The capacity adjustment to apply in this interval.
|
default Number |
getLower()
(experimental) The lower bound of the interval.
|
default Number |
getUpper()
(experimental) The upper bound of the interval.
|
@Stability(value=Experimental) @NotNull Number getChange()
The number is interpreted differently based on AdjustmentType:
@Stability(value=Experimental) @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=Experimental) @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=Experimental) static ScalingInterval.Builder builder()
ScalingInterval.Builder of ScalingIntervalCopyright © 2022. All rights reserved.