AWS - Serverless Architecture
Given this Step Functions snippet, what is the next state after
TaskA completes successfully?
{
"StartAt": "TaskA",
"States": {
"TaskA": {
"Type": "Task",
"Resource": "arn:aws:lambda:region:123456789012:function:FunctionA",
"Next": "TaskB"
},
"TaskB": {
"Type": "Task",
"Resource": "arn:aws:lambda:region:123456789012:function:FunctionB",
"End": true
}
}
}