interface RenderSignalsOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AutoScaling.RenderSignalsOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsautoscaling#RenderSignalsOptions |
Java | software.amazon.awscdk.services.autoscaling.RenderSignalsOptions |
Python | aws_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
| Name | Type | Description |
|---|---|---|
| desired | number | The desiredCapacity of the ASG. |
| min | number | The 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.

.NET
Go
Java
Python
TypeScript (