Slide 60
              Slide 60 text
              
                  Step Functions Example
{
"StartAt": "Wait for Timestamp",
"States": {
"Wait for Timestamp": {
"Type": "Wait",
"SecondsPath": "$.seconds",
"Next": "Send SNS Message"
},
"Send SNS Message": {
"Type": "Task",
"Resource": "$LAMBDA_ARN",
"Retry":[...],
"End": true
}
}
}