Reputation: 1382
Looking at the boto docs, I don't see a method of fetching the message identifier when you pull it off of an SQS queue. Can anyone provide some information on how I would get this information?
Upvotes: 4
Views: 1383
Reputation: 45846
The Message
instance should have an attribute called id
which contains the message id.
Upvotes: 4