File: //lib/python3/dist-packages/awscli/examples/autoscaling/update-auto-scaling-group.rst
**To update an Auto Scaling group**
This example updates the specified Auto Scaling group to use Elastic Load Balancing health checks::
aws autoscaling update-auto-scaling-group --auto-scaling-group-name my-auto-scaling-group --health-check-type ELB --health-check-grace-period 60
This example updates the launch configuration, minimum and maximum size of the group, and which subnet to use::
aws autoscaling update-auto-scaling-group --auto-scaling-group-name my-auto-scaling-group --launch-configuration-name new-launch-config --min-size 1 --max-size 3 --vpc-zone-identifier subnet-41767929
This example updates the desired capacity, default cooldown, placement group, termination policy, and which Availability Zone to use::
aws autoscaling update-auto-scaling-group --auto-scaling-group-name my-auto-scaling-group --default-cooldown 600 --placement-group my-placement-group --termination-policies "OldestInstance" --availability-zones us-west-2c
This example enables the instance protection setting for the specified Auto Scaling group::
aws autoscaling update-auto-scaling-group --auto-scaling-group-name my-auto-scaling-group --new-instances-protected-from-scale-in
This example disables the instance protection setting for the specified Auto Scaling group::
aws autoscaling update-auto-scaling-group --auto-scaling-group-name my-auto-scaling-group --no-new-instances-protected-from-scale-in