Is your feature request related to a problem? Please describe.
The objective is to implement the waitForTaskToken for step functions. Something like this:
Lambda1:
Type: Task
Resource: arn:aws:states:::states:startExecution.waitForTaskToken # THIS IS THE IMPORTANT PART
Parameters:
StateMachineArn:
Fn::GetAtt: ["myStateMachine", Arn]
Input:
TaskToken.$: "$$.Task.Token"
AWS_STEP_FUNCTIONS_STARTED_BY_EXECUTION_ID.$: "$$.Execution.Id"
Currently, the Resource only works if it's a lambda. Other than this, I think SQS is the most used one after this.
Is your feature request related to a problem? Please describe.
The objective is to implement the
waitForTaskToken
for step functions. Something like this:Currently, the
Resource
only works if it's a lambda. Other than this, I think SQS is the most used one after this.