在AWS控制台的SQS消息 View 中查看消息时,可以看到消息具有发送时间。如何使用Python的boto库读取此数据?
最佳答案
当您从Boto队列中读取消息时,您会得到一个Message
对象。该对象的at属性称为attributes
。这是SQS保留的有关此消息的属性字典。它包括SentTimestamp
。
关于python - SQS : How can I read the sent time of an SQS message using Python's boto library,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14945604/