UNPKG

@wmfs/statebox

Version:

Orchestrate Node functions using Amazon States Language

10 lines (8 loc) 271 B
class Status { static get RUNNING () { return 'RUNNING' } static get STOPPED () { return 'STOPPED' } static get COMPLETE () { return 'COMPLETE' } static get SUCCEEDED () { return 'SUCCEEDED' } static get FAILED () { return 'FAILED' } } module.exports = Status