aws-cdk-lib.aws_autoscaling.RenderSignalsOptions

interface RenderSignalsOptions

LanguageType name
.NETAmazon.CDK.AWS.AutoScaling.RenderSignalsOptions
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsautoscaling#RenderSignalsOptions
Javasoftware.amazon.awscdk.services.autoscaling.RenderSignalsOptions
Pythonaws_cdk.aws_autoscaling.RenderSignalsOptions
TypeScript (source)aws-cdk-lib » aws_autoscaling » RenderSignalsOptions

Input for Signals.renderCreationPolicy.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_autoscaling as autoscaling } from 'aws-cdk-lib';
const renderSignalsOptions: autoscaling.RenderSignalsOptions = {
  desiredCapacity: 123,
  minCapacity: 123,
};

Properties

NameTypeDescription
desiredCapacity?numberThe desiredCapacity of the ASG.
minCapacity?numberThe minSize of the ASG.

desiredCapacity?

Type: number (optional, default: desired capacity not configured)

The desiredCapacity of the ASG.


minCapacity?

Type: number (optional, default: minCapacity not configured)

The minSize of the ASG.