- Newest
- Most votes
- Most comments
Hello.
If you want to use SQS for Lambda triggers, the contents of the following document will be helpful.
https://docs.aws.amazon.com/lambda/latest/dg/with-sqs-example.html
If you want to send a message from Lambda to an SQS queue, the following document will be helpful.
The sample described in the document below is not Lambda code, but it describes how to send a message using the "send_message" API.
You can use it by making it run within your Lambda handler.
https://docs.aws.amazon.com/code-library/latest/ug/python_3_sqs_code_examples.html
Hi,
You have a full step-by-step sample to post SQS messages from Lamda with this article: https://code.likeagirl.io/guide-to-sending-messages-to-an-sqs-queue-with-lambda-758cf782cb83
Best,
Didier
Thanks guys. this is helpful, but I wish I could get something in javascript
Relevant content
asked 2 years ago
asked 2 years ago
asked 3 years ago
asked 5 years ago

Thanks guys. this is helpful, but I wish I could get something in javascript.
The document below also includes JavaScript sample code, so please check it out. https://docs.aws.amazon.com/lambda/latest/dg/with-sqs-example.html https://docs.aws.amazon.com/code-library/latest/ug/javascript_3_sqs_code_examples.html