asl 0.2.0

Rust implementation for Amazon States Language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "Comment": "A simple minimal example of the States language",
  "StartAt": "Hello World",
  "States": {
    "Hello World": {
      "Type": "Task",
      "Resource": "Return",
      "Next": "Fail State"
    },
    "Fail State": {
      "Type": "Fail",
      "Error": "ErrorA",
      "Cause": "Kaiju attack"
    }
  }
}