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

IoTEventsData

import { IoTEventsData } from "https://aws-api.deno.dev/v0.1/services/ioteventsdata.ts?docs=full";
class IoTEventsData {
constructor(apiFactory: client.ApiFactory);
async batchPutMessage(params: BatchPutMessageRequest): Promise<BatchPutMessageResponse>;
async batchUpdateDetector(params: BatchUpdateDetectorRequest): Promise<BatchUpdateDetectorResponse>;
async describeDetector(params: DescribeDetectorRequest): Promise<DescribeDetectorResponse>;
async listDetectors(params: ListDetectorsRequest): Promise<ListDetectorsResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new IoTEventsData(apiFactory: client.ApiFactory)
[src]

§Methods

§
batchPutMessage(params: BatchPutMessageRequest): Promise<BatchPutMessageResponse>
[src]

Sends a set of messages to the AWS IoT Events system. Each message payload is transformed into the input you specify ("inputName") and ingested into any detectors that monitor that input. If multiple messages are sent, the order in which the messages are processed isn't guaranteed. To guarantee ordering, you must send messages one at a time and wait for a successful response.

§
batchUpdateDetector(params: BatchUpdateDetectorRequest): Promise<BatchUpdateDetectorResponse>
[src]

Updates the state, variable values, and timer settings of one or more detectors (instances) of a specified detector model.

§
describeDetector(params: DescribeDetectorRequest): Promise<DescribeDetectorResponse>
[src]

Returns information about the specified detector (instance).

§
listDetectors(params: ListDetectorsRequest): Promise<ListDetectorsResponse>
[src]

Lists detectors (the instances of a detector model).

§Static Properties