Amazon IoT Events · JSON Structure

Iot Events Input Definition Structure

The definition of the input.

Type: object Properties: 1 Required: 1
Event DetectionIoTState MachineAutomation

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

Properties

attributes

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-definition-structure.json",
  "name": "InputDefinition",
  "description": "The definition of the input.",
  "type": "object",
  "properties": {
    "attributes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Attributes"
        },
        {
          "description": "The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the AWS IoT Events system using <code>BatchPutMessage</code>. Each such message contains a JSON payload, and those attributes (and their paired values) specified here are available for use in the <code>condition</code> expressions used by detectors that monitor this input. "
        }
      ]
    }
  },
  "required": [
    "attributes"
  ]
}