An AbstractWorkerTask is used to model a task that does some end-user work. This can be another task or it can be another workflow.
Name | Type | Description | Notes |
---|---|---|---|
input_parameters | object | JSON formatted map that defines the input given to the task. JSONPath is used for chaining output from previous tasks as inputs into the current task. The format to specify the mapping is '${Source.input/output.JsonPath}'. 'Source' can be either workflow or the name of the task within the workflow. You can map the task input to either a workflow input or a task output. Following this is JSON path expression to extract JSON fragment from source's input/output. | [optional] |
on_failure | str | This specifies the name of the next task to run if Task fails. This is the unique name given to the task instance within the workflow. In a graph model, denotes an edge to another Task Node. | [optional] |
on_success | str | This specifies the name of the next task to run if Task succeeds. This is the unique name given to the task instance within the workflow. In a graph model, denotes an edge to another Task Node. | [optional] |