Task instance which represents the run time instance of a task within a workflow.
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | The task description and this is the description that was added when the task was included into the workflow. | [optional] [readonly] |
| end_time | datetime | The time stamp when the task reached a final state. | [optional] [readonly] |
| failure_reason | str | Description of the reason why the task failed. | [optional] [readonly] |
| input | object | The input data that was sent to the task at the start of execution. | [optional] [readonly] |
| inst_id | str | The current running task instance Id. | [optional] [readonly] |
| internal | bool | Denotes whether or not this is an internal task. Internal tasks will be hidden from the UI within a workflow. | [optional] [readonly] |
| label | str | User friendly short label to describe this task instance in the workflow. | [optional] [readonly] |
| message | list[WorkflowMessage] | [optional] | |
| name | str | Task definition name which specifies the task type. | [optional] [readonly] |
| output | object | The output data that was generated by this task. | [optional] [readonly] |
| ref_name | str | The task reference name to ensure its unique inside a workflow. | [optional] [readonly] |
| retry_count | int | A counter for number of retries. | [optional] [readonly] |
| start_time | datetime | The time stamp when the task started execution. | [optional] [readonly] |
| status | str | The status of the task and this will specify if the task is running or has reached a final state. | [optional] |
| task_inst_id_list | list[WorkflowTaskRetryInfo] | [optional] | |
| sub_workflow_info | WorkflowWorkflowInfo | [optional] | |
| task_definition | WorkflowTaskDefinition | [optional] | |
| workflow_info | WorkflowWorkflowInfo | [optional] |