Amazon IoT Events · Schema

ClearTimerAction

Information needed to clear the timer.

Event DetectionIoTState MachineAutomation

Properties

Name Type Description
timerName object
View JSON Schema on GitHub

JSON Schema

iot-events-clear-timer-action-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-clear-timer-action-schema.json",
  "title": "ClearTimerAction",
  "description": "Information needed to clear the timer.",
  "type": "object",
  "properties": {
    "timerName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TimerName"
        },
        {
          "description": "The name of the timer to clear."
        }
      ]
    }
  },
  "required": [
    "timerName"
  ]
}