Class AdjustmentTier
An adjustment.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.ApplicationAutoScaling
Assembly: Amazon.CDK.AWS.ApplicationAutoScaling.dll
Syntax (csharp)
public class AdjustmentTier : Object, IAdjustmentTier
Syntax (vb)
Public Class AdjustmentTier
Inherits Object
Implements IAdjustmentTier
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ApplicationAutoScaling;
var adjustmentTier = new AdjustmentTier {
Adjustment = 123,
// the properties below are optional
LowerBound = 123,
UpperBound = 123
};
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