Reputation: 989
I am guessing the answer would be a big No. But is there a way to publish SQS messages straight to an S3 Bucket. I know the pattern is SQS -> Lambda ->S3. I was wondering is there a way to just publish from a SQS straight to a S3 Bucket.
Upvotes: 0
Views: 786
Reputation: 269081
Amazon SQS does not 'publish' messages.
Instead, apps can SendMessage()
to an Amazon SQS queue, and then apps can request messages by calling ReceiveMessage()
. Once they have finished processing the message, they call DeleteMessage()
.
Upvotes: 1