简体   繁体   中英

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.

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() .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM