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

AlarmHistoryItem

import type { AlarmHistoryItem } from "https://aws-api.deno.dev/v0.3/services/cloudwatch.ts?docs=full";

Represents the history of a specific alarm.

interface AlarmHistoryItem {
AlarmName?: string | null;
AlarmType?: AlarmType | null;
HistoryData?: string | null;
HistoryItemType?: HistoryItemType | null;
HistorySummary?: string | null;
Timestamp?: Date | number | null;
}

§Properties

§
AlarmName?: string | null
[src]

The descriptive name for the alarm.

§
AlarmType?: AlarmType | null
[src]

The type of alarm, either metric alarm or composite alarm.

§
HistoryData?: string | null
[src]

Data about the alarm, in JSON format.

§
HistoryItemType?: HistoryItemType | null
[src]

The type of alarm history item.

§
HistorySummary?: string | null
[src]

A summary of the alarm history, in text format.

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

The time stamp for the alarm history item.