Resume Workflow Run
| glue_resume_workflow_run | R Documentation | 
Restarts selected nodes of a previous partially completed workflow run and resumes the workflow run¶
Description¶
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.
Usage¶
glue_resume_workflow_run(Name, RunId, NodeIds)
Arguments¶
Name | 
[required] The name of the workflow to resume.  | 
RunId | 
[required] The ID of the workflow run to resume.  | 
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.  | 
Value¶
A list with the following syntax:
list(
  RunId = "string",
  NodeIds = list(
    "string"
  )
)
Request syntax¶
svc$resume_workflow_run(
  Name = "string",
  RunId = "string",
  NodeIds = list(
    "string"
  )
)