Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions,
see Getting Started with Amazon Web Services in China
(PDF).
View scheduled action
details
To view details of upcoming scheduled actions for your Auto Scaling group, use one of the
following methods:
- Console
-
To view scheduled action details
Open the Amazon EC2 console at
https://console.amazonaws.cn/ec2/, and choose Auto Scaling Groups from the navigation pane.
-
Select your Auto Scaling group.
-
On the Automatic scaling tab, in the
Scheduled actions section, you can view
upcoming scheduled actions.
Note that the console shows the values for Start
time and End time in your local time
with the UTC offset in effect at the specified date and time. The UTC
offset is the difference, in hours and minutes, from local time to UTC.
The value for Time zone shows your requested time
zone, for example, America/New_York
.
- Amazon CLI
-
Use the following describe-scheduled-actions command.
aws autoscaling describe-scheduled-actions --auto-scaling-group-name my-asg
If successful, this command returns output similar to the
following.
{
"ScheduledUpdateGroupActions": [
{
"AutoScalingGroupName": "my-asg",
"ScheduledActionName": "my-recurring-action",
"Recurrence": "30 0 1 1,6,12 *",
"ScheduledActionARN": "arn:aws-cn:autoscaling:us-west-2:123456789012:scheduledUpdateGroupAction:8e86b655-b2e6-4410-8f29-b4f094d6871c:autoScalingGroupName/my-asg:scheduledActionName/my-recurring-action",
"StartTime": "2020-12-01T00:30:00Z",
"Time": "2020-12-01T00:30:00Z",
"MinSize": 1,
"MaxSize": 6,
"DesiredCapacity": 4
}
]
}
Verify scaling
activities
To verify the scaling activities associated with scheduled scaling, see Verify a scaling activity for an Auto Scaling
group.