Amazon IoT Events · JSON Structure

Iot Events Input Configuration Structure

Information about the configuration of an input.

Type: object Properties: 6 Required: 5
Event DetectionIoTState MachineAutomation

InputConfiguration is a JSON Structure definition published by Amazon IoT Events, describing 6 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

inputName inputDescription inputArn creationTime lastUpdateTime status

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-configuration-structure.json",
  "name": "InputConfiguration",
  "description": "Information about the configuration of an 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."
        }
      ]
    }
  },
  "required": [
    "inputName",
    "inputArn",
    "creationTime",
    "lastUpdateTime",
    "status"
  ]
}