In the Standard Workflow
we can happily invoke another Standard workflow
using
{
"Type": "Task",
"Resource": "arn:aws:states:::states:startExecution.sync:2",
"Parameters": {
"StateMachineArn": "${NestedStateMachineArn}",
...
}
...
When we try to do the same with Express workflow
we of course get the Express state machine does not support '.sync' service integration
. That is stated by aws
so expected behaviour.
Is there another way to execute Express workflow
from another Express workflow
and somehow get the execution result/output? I can think of a last resort - use Lambda
function to execute the nested workflow sync and wait for a response, that said, it will increase the cost having a function waiting for StateMachine
needlessly.
I tried to look around but couldn't find this documented anywhere.