Amazon IoT Events · JSON Structure

Iot Events Update Detector Model Request Structure

UpdateDetectorModelRequest schema

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

UpdateDetectorModelRequest 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

detectorModelDefinition detectorModelDescription roleArn evaluationMethod

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-update-detector-model-request-structure.json",
  "name": "UpdateDetectorModelRequest",
  "description": "UpdateDetectorModelRequest schema",
  "type": "object",
  "properties": {
    "detectorModelDefinition": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DetectorModelDefinition"
        },
        {
          "description": "Information that defines how a detector operates."
        }
      ]
    },
    "detectorModelDescription": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DetectorModelDescription"
        },
        {
          "description": "A brief description of the detector model."
        }
      ]
    },
    "roleArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AmazonResourceName"
        },
        {
          "description": "The ARN of the role that grants permission to AWS IoT Events to perform its operations."
        }
      ]
    },
    "evaluationMethod": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EvaluationMethod"
        },
        {
          "description": "Information about the order in which events are evaluated and how actions are executed. "
        }
      ]
    }
  },
  "required": [
    "detectorModelDefinition",
    "roleArn"
  ]
}