ScheduledActionReference
- class aws_cdk.aws_autoscaling.ScheduledActionReference(*, auto_scaling_group_name, scheduled_action_name)
Bases:
object
A reference to a ScheduledAction resource.
- Parameters:
auto_scaling_group_name (
str
) – The AutoScalingGroupName of the ScheduledAction resource.scheduled_action_name (
str
) – The ScheduledActionName of the ScheduledAction resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_autoscaling as autoscaling scheduled_action_reference = autoscaling.ScheduledActionReference( auto_scaling_group_name="autoScalingGroupName", scheduled_action_name="scheduledActionName" )
Attributes
- auto_scaling_group_name
The AutoScalingGroupName of the ScheduledAction resource.
- scheduled_action_name
The ScheduledActionName of the ScheduledAction resource.