我使用python和boto sqs来发送和接收消息,现在我想将消息发送到aws FIFO队列,但是我没有找到任何使用boto设置MessageGRoupID的资源,有很多可用于使用boto3发送消息的资源,但我想使用boto设置消息组Id,任何人都可以帮助,
我当前的代码是:
def _send_msg_to_Fifo_queue(queue_name,message_body,message_groupID,message_DeduplicationId):
q = conn.get_queue(queue_name)
if not q:
# TODO idk, this should never happen, but log or something?
pass
m=Message()
m.set_body(message_body)
m.MessageGroupID=message_groupID
q.write(m)