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.4/services/ioteventsdata.ts?docs=full";
class IoTEventsData {
constructor(apiFactory: client.ApiFactory);
async batchAcknowledgeAlarm(params: BatchAcknowledgeAlarmRequest, opts?: client.RequestOptions): Promise<BatchAcknowledgeAlarmResponse>;
async batchDeleteDetector(params: BatchDeleteDetectorRequest, opts?: client.RequestOptions): Promise<BatchDeleteDetectorResponse>;
async batchDisableAlarm(params: BatchDisableAlarmRequest, opts?: client.RequestOptions): Promise<BatchDisableAlarmResponse>;
async batchEnableAlarm(params: BatchEnableAlarmRequest, opts?: client.RequestOptions): Promise<BatchEnableAlarmResponse>;
async batchPutMessage(params: BatchPutMessageRequest, opts?: client.RequestOptions): Promise<BatchPutMessageResponse>;
async batchResetAlarm(params: BatchResetAlarmRequest, opts?: client.RequestOptions): Promise<BatchResetAlarmResponse>;
async batchSnoozeAlarm(params: BatchSnoozeAlarmRequest, opts?: client.RequestOptions): Promise<BatchSnoozeAlarmResponse>;
async batchUpdateDetector(params: BatchUpdateDetectorRequest, opts?: client.RequestOptions): Promise<BatchUpdateDetectorResponse>;
async describeAlarm(params: DescribeAlarmRequest, opts?: client.RequestOptions): Promise<DescribeAlarmResponse>;
async describeDetector(params: DescribeDetectorRequest, opts?: client.RequestOptions): Promise<DescribeDetectorResponse>;
async listAlarms(params: ListAlarmsRequest, opts?: client.RequestOptions): Promise<ListAlarmsResponse>;
async listDetectors(params: ListDetectorsRequest, opts?: client.RequestOptions): Promise<ListDetectorsResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

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

§Methods

§

Acknowledges one or more alarms. The alarms change to the ACKNOWLEDGED state after you acknowledge them.

§

Deletes one or more detectors that were created. When a detector is deleted, its state will be cleared and the detector will be removed from the list of detectors. The deleted detector will no longer appear if referenced in the ListDetectors API call.

§

Disables one or more alarms. The alarms change to the DISABLED state after you disable them.

§

Enables one or more alarms. The alarms change to the NORMAL state after you enable them.

§

Sends a set of messages to the 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.

§

Resets one or more alarms. The alarms return to the NORMAL state after you reset them.

§

Changes one or more alarms to the snooze mode. The alarms change to the SNOOZE_DISABLED state after you set them to the snooze mode.

§

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

§

Retrieves information about an alarm.

§

Returns information about the specified detector (instance).

§

Lists one or more alarms. The operation returns only the metadata associated with each alarm.

§

Lists detectors (the instances of a detector model).

§Static Properties