Amazon IoT Events · JSON Structure

Iot Events Email Content Structure

Contains the subject and message of an email.

Type: object Properties: 2
Event DetectionIoTState MachineAutomation

EmailContent is a JSON Structure definition published by Amazon IoT Events, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

subject additionalMessage

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-events/refs/heads/main/json-structure/iot-events-email-content-structure.json",
  "name": "EmailContent",
  "description": "Contains the subject and message of an email.",
  "type": "object",
  "properties": {
    "subject": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EmailSubject"
        },
        {
          "description": "The subject of the email."
        }
      ]
    },
    "additionalMessage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NotificationAdditionalMessage"
        },
        {
          "description": "The message that you want to send. The message can be up to 200 characters."
        }
      ]
    }
  }
}