asl 0.2.0

Rust implementation for Amazon States Language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
{
  "Comment": "Testing getting Context Object from InputPath in Pass State",
  "StartAt": "pass-execution-details",
  "States": {
    "pass-execution-details": {
      "Type": "Pass",
      "ResultPath": "$.AWS_STEP_FUNCTIONS_STARTED_BY_EXECUTION_ID",
      "InputPath": "$$.Execution.Id",
      "End": true
    }
  }
}