Which of the following is not an item of message attribute in AWS SNS?
Click on the arrows to vote for the correct answer
A. B. C. D.Answer: D.
https://docs.aws.amazon.com/sns/latest/dg/SNSMessageAttributes.htmlAWS SNS (Simple Notification Service) is a fully-managed messaging service that allows you to send and receive messages from various types of endpoints or clients. SNS uses a publish-subscribe model where publishers send messages to topics, and subscribers receive messages from topics.
When publishing a message to an SNS topic, you can include optional message attributes. These attributes provide metadata about the message, such as its format, type, and structure. The message attributes are key-value pairs that can be used to filter messages based on the attributes' values.
Let's take a look at the options provided:
A. Name: This is not an item of message attribute in AWS SNS. There is no attribute named "Name" in SNS.
B. Type: This is an item of message attribute in AWS SNS. The Type attribute specifies the data type of the message attribute value. It can be String, Number, or Binary.
C. Value: This is an item of message attribute in AWS SNS. The Value attribute is the actual value of the message attribute.
D. MessageID: This is not an item of message attribute in AWS SNS. The MessageID is a unique identifier for the message, which is generated by SNS when the message is published.
Therefore, the correct answer is A. Name.