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
17
18
{
  "Comment": "An example of the Amazon States Language using a map state to map over items in parallel.",
  "StartAt": "Map",
  "States": {
    "Map": {
      "Type": "Map",
      "Next": "Final State",
      "InputPath": "$.input",
      "ItemsPath": "$.items",
      "MaxConcurrency": 0,
      "ResultPathAsDynamicValue": "$.result"
    },
    "Final State": {
      "Type": "Pass",
      "End": true
    }
  }
}