:doc:`Glue <../../glue>` / Client / resume_workflow_run

*******************
resume_workflow_run
*******************



.. py:method:: Glue.Client.resume_workflow_run(**kwargs)

  

  Restarts selected nodes of a previous partially completed workflow run and resumes the workflow run. The selected nodes and all nodes that are downstream from the selected nodes are run.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ResumeWorkflowRun>`_  


  **Request Syntax**
  ::

    response = client.resume_workflow_run(
        Name='string',
        RunId='string',
        NodeIds=[
            'string',
        ]
    )
    
  :type Name: string
  :param Name: **[REQUIRED]** 

    The name of the workflow to resume.

    

  
  :type RunId: string
  :param RunId: **[REQUIRED]** 

    The ID of the workflow run to resume.

    

  
  :type NodeIds: list
  :param NodeIds: **[REQUIRED]** 

    A list of the node IDs for the nodes you want to restart. The nodes that are to be restarted must have a run attempt in the original run.

    

  
    - *(string) --* 

    

  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'RunId': 'string',
          'NodeIds': [
              'string',
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **RunId** *(string) --* 

        The new ID assigned to the resumed workflow run. Each resume of a workflow run will have a new run ID.

        
      

      - **NodeIds** *(list) --* 

        A list of the node IDs for the nodes that were actually restarted.

        
        

        - *(string) --* 
    
  
  **Exceptions**
  
  *   :py:class:`Glue.Client.exceptions.InvalidInputException`

  
  *   :py:class:`Glue.Client.exceptions.EntityNotFoundException`

  
  *   :py:class:`Glue.Client.exceptions.InternalServiceException`

  
  *   :py:class:`Glue.Client.exceptions.OperationTimeoutException`

  
  *   :py:class:`Glue.Client.exceptions.ConcurrentRunsExceededException`

  
  *   :py:class:`Glue.Client.exceptions.IllegalWorkflowStateException`

  