The scenario that I want to achieve with AWS Lambda functions:
- Make a call to Lambda and receive a response.
- After the response is received I need to execute another Lambda function, which does its own job.
The pain point for me is how to trigger the second Lambda without a second call. I am trying to do this in AWS Step Functions, however, I believe I can not return something from the first function and then carry on with executing the second one, or can I?
