aws-cdk-lib.aws_autoscaling_common.ArbitraryIntervals

interface ArbitraryIntervals

LanguageType name
.NETAmazon.CDK.AWS.AutoScaling.Common.ArbitraryIntervals
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsautoscalingcommon#ArbitraryIntervals
Javasoftware.amazon.awscdk.services.autoscaling.common.ArbitraryIntervals
Pythonaws_cdk.aws_autoscaling_common.ArbitraryIntervals
TypeScript (source)aws-cdk-lib » aws_autoscaling_common » ArbitraryIntervals

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_autoscaling_common as autoscaling_common } from 'aws-cdk-lib';
const arbitraryIntervals: autoscaling_common.ArbitraryIntervals = {
  absolute: false,
  intervals: [{
    change: 123,

    // the properties below are optional
    lower: 123,
    upper: 123,
  }],
};

Properties

NameTypeDescription
absoluteboolean
intervalsScalingInterval[]

absolute

Type: boolean


intervals

Type: ScalingInterval[]