Status of a workflow run.
| 26 | |
| 27 | |
| 28 | class RunStatus(str, Enum): |
| 29 | """Status of a workflow run.""" |
| 30 | |
| 31 | CREATED = "created" |
| 32 | RUNNING = "running" |
| 33 | PAUSED = "paused" |
| 34 | COMPLETED = "completed" |
| 35 | FAILED = "failed" |
| 36 | ABORTED = "aborted" |
| 37 | |
| 38 | |
| 39 | @dataclass |