interface ScalingStep {
    adjustment: Input<number>;
    value: Input<number>;
}

Properties

Properties

adjustment: Input<number>

The number of members by which to scale, when [value] breached. A positive value scales up. A negative value scales down.

value: Input<number>

The threshold value that causes this step to be followed. If this an upperStep then values >= to this will trigger this step's [scalingAdjustment]. If this is a lowerStep then values <= to this will trigger this step's [scalingAdjustment].

Generated using TypeDoc