Amazon web services – Merging jsons as input for AWS SFN startExeuction
I have the following aws step function step defined "Step": { "Type": "Task", "Resource": "arn:aws:states:::states:startExecution.sync", "Parameters": { "Name.$": "$.executionName", "StateMachineArn": "${arn}", "Input.$": "$" } ... I came across this documentation which illustrates how to associate workflow executions I tried to…