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

DescribeAlarmHistoryInput

import type { DescribeAlarmHistoryInput } from "https://aws-api.deno.dev/v0.4/services/cloudwatch.ts?docs=full";
interface DescribeAlarmHistoryInput {
AlarmName?: string | null;
AlarmTypes?: AlarmType[] | null;
EndDate?: Date | number | null;
HistoryItemType?: HistoryItemType | null;
MaxRecords?: number | null;
NextToken?: string | null;
ScanBy?: ScanBy | null;
StartDate?: Date | number | null;
}

§Properties

§
AlarmName?: string | null
[src]

The name of the alarm.

§
AlarmTypes?: AlarmType[] | null
[src]

Use this parameter to specify whether you want the operation to return metric alarms or composite alarms. If you omit this parameter, only metric alarms are returned.

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

The ending date to retrieve alarm history.

§
HistoryItemType?: HistoryItemType | null
[src]

The type of alarm histories to retrieve.

§
MaxRecords?: number | null
[src]

The maximum number of alarm history records to retrieve.

§
NextToken?: string | null
[src]

The token returned by a previous call to indicate that there is more data available.

§
ScanBy?: ScanBy | null
[src]

Specified whether to return the newest or oldest alarm history first. Specify TimestampDescending to have the newest event history returned first, and specify TimestampAscending to have the oldest history returned first.

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

The starting date to retrieve alarm history.