Reputation: 658
i want to be notified when file is uploaded to my s3 bucket. I know I can have sqs message or sns notification. What I need is a message send to multiple sqs queues. Is it possible?
Upvotes: 3
Views: 4685
Reputation: 25
now aws enable you to add s3 event to notify one sqs, only one and should be standard not fifo. you can add more than one filter suffix or filter prefix but for the same standard sqs. if you want to notify more than one queue standard/fifo you should have sns in the middle, which means s3 event to sns and all sqs are subscribed to that sns, also you can add multiple lambda functions and ec2 instances.
Upvotes: 1
Reputation: 1161
You can use s3 notification service for both SNS or SQS http://aws.amazon.com/blogs/aws/s3-event-notification/
Upvotes: 2