Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateDetectorModelRequest

import type { CreateDetectorModelRequest } from "https://aws-api.deno.dev/v0.3/services/iotevents.ts?docs=full";
interface CreateDetectorModelRequest {
detectorModelDefinition: DetectorModelDefinition;
detectorModelDescription?: string | null;
detectorModelName: string;
evaluationMethod?: EvaluationMethod | null;
key?: string | null;
roleArn: string;
tags?: Tag[] | null;
}

§Properties

§
detectorModelDefinition: DetectorModelDefinition
[src]

Information that defines how the detectors operate.

§
detectorModelDescription?: string | null
[src]

A brief description of the detector model.

§
detectorModelName: string
[src]

The name of the detector model.

§
evaluationMethod?: EvaluationMethod | null
[src]

Information about the order in which events are evaluated and how actions are executed.

§
key?: string | null
[src]

The input attribute key used to identify a device or system to create a detector (an instance of the detector model) and then to route each input received to the appropriate detector (instance). This parameter uses a JSON-path expression in the message payload of each input to specify the attribute-value pair that is used to identify the device associated with the input.

§
roleArn: string
[src]

The ARN of the role that grants permission to AWS IoT Events to perform its operations.

§
tags?: Tag[] | null
[src]

Metadata that can be used to manage the detector model.