Amazon IoT Events · Schema

AlarmNotification

Contains information about one or more notification actions.

Event DetectionIoTState MachineAutomation

Properties

Name Type Description
notificationActions object
View JSON Schema on GitHub

JSON Schema

iot-events-alarm-notification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-events/refs/heads/main/json-schema/iot-events-alarm-notification-schema.json",
  "title": "AlarmNotification",
  "description": "Contains information about one or more notification actions.",
  "type": "object",
  "properties": {
    "notificationActions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NotificationActions"
        },
        {
          "description": "Contains the notification settings of an alarm model. The settings apply to all alarms that were created based on this alarm model."
        }
      ]
    }
  }
}