Show / Hide Table of Contents

Interface IAdjustmentTier

An adjustment.

Namespace: Amazon.CDK.AWS.AutoScaling
Assembly: Amazon.CDK.AWS.AutoScaling.dll
Syntax (csharp)
public interface IAdjustmentTier
Syntax (vb)
Public Interface IAdjustmentTier

Synopsis

Properties

Adjustment

What number to adjust the capacity with.

LowerBound

Lower bound where this scaling tier applies.

UpperBound

Upper bound where this scaling tier applies.

Properties

Adjustment

What number to adjust the capacity with.

double Adjustment { get; }
Property Value

System.Double

Remarks

The number is interpeted as an added capacity, a new fixed capacity or an added percentage depending on the AdjustmentType value of the StepScalingPolicy.

Can be positive or negative.

LowerBound

Lower bound where this scaling tier applies.

virtual Nullable<double> LowerBound { get; }
Property Value

System.Nullable<System.Double>

Remarks

The scaling tier applies if the difference between the metric value and its alarm threshold is higher than this value.

Default: -Infinity if this is the first tier, otherwise the upperBound of the previous tier

UpperBound

Upper bound where this scaling tier applies.

virtual Nullable<double> UpperBound { get; }
Property Value

System.Nullable<System.Double>

Remarks

The scaling tier applies if the difference between the metric value and its alarm threshold is lower than this value.

Default: +Infinity

Back to top Generated by DocFX