From an AWS Lambda function (API), I have to make a call to a service that accepts requests only through a request queue and reply to call back url.
The AWS Lambda function accepts both sync and async request.
In case of sync request, I want to make a callback to the exact same instance of Lambda which made the call.
Is it possible to get the url for callback to exact instance of an AWS Lambda function?
If it not possible , what is best way to handle the sync request from lambda when considering I don't have a control over the async service.