HEX
Server: LiteSpeed
System: Linux s3604.bom1.stableserver.net 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: dmstechonline (1480)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: //lib/python3.6/site-packages/awscli/examples/autoscaling/describe-scaling-activities.rst
**To get a description of the scaling activities for an Auto Scaling group**

This example describes the scaling activities for the specified Auto Scaling group::

    aws autoscaling describe-scaling-activities --auto-scaling-group-name my-auto-scaling-group

The following is example output::

    {
        "Activities": [
            {
                "Description": "Launching a new EC2 instance: i-4ba0837f",
                "AutoScalingGroupName": "my-auto-scaling-group",
                "ActivityId": "f9f2d65b-f1f2-43e7-b46d-d86756459699",
                "Details": "{"Availability Zone":"us-west-2c"}",
                "StartTime": "2013-08-19T20:53:29.930Z",
                "Progress": 100,
                "EndTime": "2013-08-19T20:54:02Z",
                "Cause": "At 2013-08-19T20:53:25Z a user request created an AutoScalingGroup changing the desired capacity from 0 to 1.  At 2013-08-19T20:53:29Z an instance was started in response to a difference between desired and actual capacity, increasing the capacity from 0 to 1.",
                "StatusCode": "Successful"
            }
        ]
    }

To describe a specific scaling activity, use the ``activity-ids`` parameter::

    aws autoscaling describe-scaling-activities --activity-ids b55c7b67-c8aa-4d10-b240-730ff91d8895

To return a specific number of activities, use the ``max-items`` parameter::

    aws autoscaling describe-scaling-activities --max-items 1

If the output includes a ``NextToken`` field, there are more activities. To get the additional activities, use the value of this field with the ``starting-token`` parameter in a subsequent call as follows::

    aws autoscaling describe-scaling-activities --starting-token Z3M3LMPEXAMPLE