What is the purpose of using message body in SQS while you're already able to add message attributes?
Let's take an example, we want to push a message to new-user
queue when a new user registered, I imagine the message will have an attribute userId
, I don't see the use of body
here.
Message attributes are supposed to be used as message metadata (like timestamp or possibly some category) and not the message itself.
Ideally, message payload should be given in the message body
So, for example if you are supporting JSON and XML payloads then possibly you can put payload type as message attribute and then when you fetch the message, based on this payload type attribute you decide between the JSON message processor or XML message processor. This is just a superficial example to explain the usage of attributes and body
Following is the extract from AWS Doc