Anton Cavanaugh
Anton Cavanaugh

Reputation: 989

Question on SQS and S3 is it possible to wire SQS to publish straight to a S3 message

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

Answers (1)

John Rotenstein
John Rotenstein

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

Related Questions