Amazon IoT Events · JSON Structure

Iot Events Input Summaries Structure

InputSummaries schema

Type: array Properties: 0
Event DetectionIoTState MachineAutomation

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

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-input-summaries-structure.json",
  "name": "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."
  }
}