Delete Scheduled Action
autoscaling_delete_scheduled_action |
R Documentation |
Deletes the specified scheduled action
Description
Deletes the specified scheduled action.
Usage
autoscaling_delete_scheduled_action(AutoScalingGroupName,
ScheduledActionName)
Arguments
AutoScalingGroupName
[required] The name of the Auto Scaling group.
ScheduledActionName
[required] The name of the action to delete.
Value
An empty list.
Request syntax
svc$delete_scheduled_action(
AutoScalingGroupName = "string",
ScheduledActionName = "string"
)
Examples
## Not run:
# This example deletes the specified scheduled action from the specified
# Auto Scaling group.
svc$delete_scheduled_action(
AutoScalingGroupName = "my-auto-scaling-group",
ScheduledActionName = "my-scheduled-action"
)
## End(Not run)