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

Alarm

import type { Alarm } from "https://aws-api.deno.dev/v0.4/services/ioteventsdata.ts?docs=full";

Contains information about an alarm.

interface Alarm {
alarmModelName?: string | null;
alarmModelVersion?: string | null;
alarmState?: AlarmState | null;
creationTime?: Date | number | null;
keyValue?: string | null;
lastUpdateTime?: Date | number | null;
severity?: number | null;
}

§Properties

§
alarmModelName?: string | null
[src]

The name of the alarm model.

§
alarmModelVersion?: string | null
[src]

The version of the alarm model.

§
alarmState?: AlarmState | null
[src]

Contains information about the current state of the alarm.

§
creationTime?: Date | number | null
[src]

The time the alarm was created, in the Unix epoch format.

§
keyValue?: string | null
[src]

The value of the key used as a filter to select only the alarms associated with the key.

§
lastUpdateTime?: Date | number | null
[src]

The time the alarm was last updated, in the Unix epoch format.

§
severity?: number | null
[src]

A non-negative integer that reflects the severity level of the alarm.