RenderSignalsOptions¶
-
class
aws_cdk.aws_autoscaling.
RenderSignalsOptions
(*, desired_capacity=None, min_capacity=None)¶ Bases:
object
Input for Signals.renderCreationPolicy.
- Parameters
desired_capacity (
Union
[int
,float
,None
]) – The desiredCapacity of the ASG. Default: - desired capacity not configuredmin_capacity (
Union
[int
,float
,None
]) – The minSize of the ASG. Default: - minCapacity not configured
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_autoscaling as autoscaling render_signals_options = autoscaling.RenderSignalsOptions( desired_capacity=123, min_capacity=123 )
Attributes
-
desired_capacity
¶ The desiredCapacity of the ASG.
- Default
desired capacity not configured
- Return type
Union
[int
,float
,None
]
-
min_capacity
¶ The minSize of the ASG.
- Default
minCapacity not configured
- Return type
Union
[int
,float
,None
]