Amazon IoT Events · Schema

InputSummary

Information about the input.

Event DetectionIoTState MachineAutomation

Properties

Name Type Description
inputName object
inputDescription object
inputArn object
creationTime object
lastUpdateTime object
status object
View JSON Schema on GitHub

JSON Schema

iot-events-input-summary-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-summary-schema.json",
  "title": "InputSummary",
  "description": "Information about the input.",
  "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."
        }
      ]
    }
  }
}