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

CreateAlarmModelRequest

import type { CreateAlarmModelRequest } from "https://aws-api.deno.dev/v0.3/services/iotevents.ts?docs=full";
interface CreateAlarmModelRequest {
alarmCapabilities?: AlarmCapabilities | null;
alarmEventActions?: AlarmEventActions | null;
alarmModelDescription?: string | null;
alarmModelName: string;
alarmNotification?: AlarmNotification | null;
alarmRule: AlarmRule;
key?: string | null;
roleArn: string;
severity?: number | null;
tags?: Tag[] | null;
}

§Properties

§
alarmCapabilities?: AlarmCapabilities | null
[src]

Contains the configuration information of alarm state changes.

§
alarmEventActions?: AlarmEventActions | null
[src]

Contains information about one or more alarm actions.

§
alarmModelDescription?: string | null
[src]

A description that tells you what the alarm model detects.

§
alarmModelName: string
[src]

A unique name that helps you identify the alarm model. You can't change this name after you create the alarm model.

§
alarmNotification?: AlarmNotification | null
[src]

Contains information about one or more notification actions.

§
alarmRule: AlarmRule
[src]

Defines when your alarm is invoked.

§
key?: string | null
[src]

An input attribute used as a key to create an alarm. AWS IoT Events routes inputs associated with this key to the alarm.

§
roleArn: string
[src]

The ARN of the IAM role that allows the alarm to perform actions and access AWS resources. For more information, see Amazon Resource Names (ARNs) in the AWS General Reference.

§
severity?: number | null
[src]

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

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

A list of key-value pairs that contain metadata for the alarm model. The tags help you manage the alarm model. For more information, see Tagging your AWS IoT Events resources in the AWS IoT Events Developer Guide.

You can create up to 50 tags for one alarm model.