AutoScaling / Client / resume_processes
resume_processes#
- AutoScaling.Client.resume_processes(**kwargs)#
Resumes the specified suspended auto scaling processes, or all suspended process, for the specified Auto Scaling group.
For more information, see Suspending and resuming scaling processes in the Amazon EC2 Auto Scaling User Guide.
See also: AWS API Documentation
Request Syntax
response = client.resume_processes( AutoScalingGroupName='string', ScalingProcesses=[ 'string', ] )
- Parameters:
AutoScalingGroupName (string) –
[REQUIRED]
The name of the Auto Scaling group.
ScalingProcesses (list) –
One or more of the following processes:
Launch
Terminate
AddToLoadBalancer
AlarmNotification
AZRebalance
HealthCheck
InstanceRefresh
ReplaceUnhealthy
ScheduledActions
If you omit this property, all processes are specified.
(string) –
- Returns:
None
Exceptions
AutoScaling.Client.exceptions.ResourceInUseFault
AutoScaling.Client.exceptions.ResourceContentionFault
Examples
This example resumes the specified suspended scaling process for the specified Auto Scaling group.
response = client.resume_processes( AutoScalingGroupName='my-auto-scaling-group', ScalingProcesses=[ 'AlarmNotification', ], ) print(response)
Expected Output:
{ 'ResponseMetadata': { '...': '...', }, }