Amazon SNS · Schema

MessageAttributeValue

EmailMessagingNotificationsPub/SubPush NotificationsSMS

Properties

Name Type Description
DataType string The data type of the attribute. Supported types are String, String.Array, Number, and Binary.
StringValue string The string value of the attribute
BinaryValue string The binary (base64-encoded) value of the attribute
View JSON Schema on GitHub

JSON Schema

amazon-sns-message-attribute-value-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MessageAttributeValue",
  "type": "object",
  "properties": {
    "DataType": {
      "type": "string",
      "description": "The data type of the attribute. Supported types are String, String.Array, Number, and Binary."
    },
    "StringValue": {
      "type": "string",
      "description": "The string value of the attribute"
    },
    "BinaryValue": {
      "type": "string",
      "description": "The binary (base64-encoded) value of the attribute"
    }
  }
}