Amazon IoT Events · Schema

InputSummaries

InputSummaries schema

Event DetectionIoTState MachineAutomation
View JSON Schema on GitHub

JSON Schema

iot-events-input-summaries-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-input-summaries-schema.json",
  "title": "InputSummaries",
  "description": "InputSummaries schema",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "inputName": {
        "allOf": [
          {
            "$ref": "#/components/schemas/InputName"
          },
          {
            "description": "The name of the input."
          }
        ]
      },
      "inputDescription": {
        "allOf": [
          {
            "$ref": "#/components/schemas/InputDescription"
          },
          {
            "description": "A brief description of the input."
          }
        ]
      },
      "inputArn": {
        "allOf": [
          {
            "$ref": "#/components/schemas/InputArn"
          },
          {
            "description": "The ARN of the input."
          }
        ]
      },
      "creationTime": {
        "allOf": [
          {
            "$ref": "#/components/schemas/Timestamp"
          },
          {
            "description": "The time the input was created."
          }
        ]
      },
      "lastUpdateTime": {
        "allOf": [
          {
            "$ref": "#/components/schemas/Timestamp"
          },
          {
            "description": "The last time the input was updated."
          }
        ]
      },
      "status": {
        "allOf": [
          {
            "$ref": "#/components/schemas/InputStatus"
          },
          {
            "description": "The status of the input."
          }
        ]
      }
    },
    "description": "Information about the input."
  }
}