asl 0.2.0

Rust implementation for Amazon States Language
Documentation
{
  "StartAt": "Hello",
  "States": {
    "Hello": {
      "Type": "Task",
      "Resource": "arn:aws:lambda:us-east-1:123456789012:function:foo",
      "Parameters": {
        "foo": "abc"
      },
      "ResultSelector": {
        "absurd": null,
        "output.$": "$"
      },
      "Next": "Goodbye"
    },
    "Goodbye": {
      "Type": "Succeed"
    }
  }
}