Is there a simple way for me to add to an AWS SQS queue from an AWS lambda?
From my google search research findings, it seems that the suggested workflow is to publish to an SNS topic, which can then push the message to the queue.
Question: Is there a reason to use SNS
on top of SQS
instead of using SQS
only?
Context (FYI): My scenario is that I am using SQS as a logger queue. I need to push logs to this queue from a lambda.