interface RenderSignalsOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AutoScaling.RenderSignalsOptions |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsautoscaling#RenderSignalsOptions |
![]() | software.amazon.awscdk.services.autoscaling.RenderSignalsOptions |
![]() | aws_cdk.aws_autoscaling.RenderSignalsOptions |
![]() | 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.