Show / Hide Table of Contents

Interface IScalingInterval

A range of metric values in which to apply a certain scaling operation.

Namespace: Amazon.CDK.AWS.AutoScaling
Assembly: Amazon.CDK.AWS.AutoScaling.dll
Syntax (csharp)
public interface IScalingInterval
Syntax (vb)
Public Interface IScalingInterval
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.AutoScaling;

var scalingInterval = new ScalingInterval {
    Change = 123,

    // the properties below are optional
    Lower = 123,
    Upper = 123
};

Synopsis

Properties

Change

The capacity adjustment to apply in this interval.

Lower

The lower bound of the interval.

Upper

The upper bound of the interval.

Properties

Change

The capacity adjustment to apply in this interval.

double Change { get; }
Property Value

System.Double

Remarks

The number is interpreted differently based on AdjustmentType:

    Lower

    The lower bound of the interval.

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

    System.Nullable<System.Double>

    Remarks

    The scaling adjustment will be applied if the metric is higher than this value.

    Default: Threshold automatically derived from neighbouring intervals

    Upper

    The upper bound of the interval.

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

    System.Nullable<System.Double>

    Remarks

    The scaling adjustment will be applied if the metric is lower than this value.

    Default: Threshold automatically derived from neighbouring intervals

    Back to top Generated by DocFX