Hello,
I have 2 lambda functions, the first one is invoking the other, and waits for its response, then the first one pass the response to client,
I am wondering if I can use SNS topics to publish from first one, and the second will response and publish again to first one, so I don't make the functions wait for each others (to decrease computing time).
The question is how to make client waits while the function is terminated and invoked again by the other function to response?