I have the following pipeline:
Script --> SQS --> Lambda
- A script sends a message to a SQS queue.
- Based on the content of this message, the Lambda executes a different process (Calls an API with some payload)
- The script needs to receive the API HTTP response, output of Lambda.
How can I achieve this last step? (Ideally using boto3)