Amazon IoT Events · JSON Structure

Iot Events Create Input Request Structure

CreateInputRequest schema

Type: object Properties: 4 Required: 2
Event DetectionIoTState MachineAutomation

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

Properties

inputName inputDescription inputDefinition tags

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-create-input-request-structure.json",
  "name": "CreateInputRequest",
  "description": "CreateInputRequest schema",
  "type": "object",
  "properties": {
    "inputName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InputName"
        },
        {
          "description": "The name you want to give to the input."
        }
      ]
    },
    "inputDescription": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InputDescription"
        },
        {
          "description": "A brief description of the input."
        }
      ]
    },
    "inputDefinition": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InputDefinition"
        },
        {
          "description": "The definition of the input."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Tags"
        },
        {
          "description": "Metadata that can be used to manage the input."
        }
      ]
    }
  },
  "required": [
    "inputName",
    "inputDefinition"
  ]
}