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

UpdateAlarmModelResponse

import type { UpdateAlarmModelResponse } from "https://aws-api.deno.dev/v0.3/services/iotevents.ts?docs=full";
interface UpdateAlarmModelResponse {
alarmModelArn?: string | null;
alarmModelVersion?: string | null;
creationTime?: Date | number | null;
lastUpdateTime?: Date | number | null;
status?: AlarmModelVersionStatus | null;
}

§Properties

§
alarmModelArn?: string | null
[src]

The ARN of the alarm model. For more information, see Amazon Resource Names (ARNs) in the AWS General Reference.

§
alarmModelVersion?: string | null
[src]

The version of the alarm model.

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

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

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

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

§

The status of the alarm model. The status can be one of the following values:

  • ACTIVE - The alarm model is active and it's ready to evaluate data.
  • ACTIVATING - AWS IoT Events is activating your alarm model. Activating an alarm model can take up to a few minutes.
  • INACTIVE - The alarm model is inactive, so it isn't ready to evaluate data. Check your alarm model information and update the alarm model.
  • FAILED - You couldn't create or update the alarm model. Check your alarm model information and try again.