Class AdjustmentTier
An adjustment.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.AutoScaling
Assembly: Amazon.CDK.AWS.AutoScaling.dll
Syntax (csharp)
public class AdjustmentTier : Object, IAdjustmentTier
Syntax (vb)
Public Class AdjustmentTier
Inherits Object
Implements IAdjustmentTier
Synopsis
Constructors
AdjustmentTier() |
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. |
Constructors
AdjustmentTier()
public AdjustmentTier()
Properties
Adjustment
What number to adjust the capacity with.
public double Adjustment { get; set; }
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.
public Nullable<double> LowerBound { get; set; }
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.
public Nullable<double> UpperBound { get; set; }
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