:doc:`AutoScaling <../../autoscaling>` / Client / resume_processes

****************
resume_processes
****************



.. py:method:: 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 `Suspend and resume Amazon EC2 Auto Scaling processes <https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-suspend-resume-processes.html>`__ in the *Amazon EC2 Auto Scaling User Guide*.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/ResumeProcesses>`_  


  **Request Syntax**
  ::

    response = client.resume_processes(
        AutoScalingGroupName='string',
        ScalingProcesses=[
            'string',
        ]
    )
    
  :type AutoScalingGroupName: string
  :param AutoScalingGroupName: **[REQUIRED]** 

    The name of the Auto Scaling group.

    

  
  :type ScalingProcesses: list
  :param ScalingProcesses: 

    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**
  
  *   :py:class:`AutoScaling.Client.exceptions.ResourceInUseFault`

  
  *   :py:class:`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': {
            '...': '...',
        },
    }

  