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

ListMonitoringAlertHistoryRequest

import type { ListMonitoringAlertHistoryRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListMonitoringAlertHistoryRequest {
CreationTimeAfter?: Date | number | null;
CreationTimeBefore?: Date | number | null;
MaxResults?: number | null;
MonitoringAlertName?: string | null;
MonitoringScheduleName?: string | null;
NextToken?: string | null;
SortOrder?: SortOrder | null;
StatusEquals?: MonitoringAlertStatus | null;
}

§Properties

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

A filter that returns only alerts created on or after the specified time.

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

A filter that returns only alerts created on or before the specified time.

§
MaxResults?: number | null
[src]

The maximum number of results to display. The default is 100.

§
MonitoringAlertName?: string | null
[src]

The name of a monitoring alert.

§
MonitoringScheduleName?: string | null
[src]

The name of a monitoring schedule.

§
NextToken?: string | null
[src]

If the result of the previous ListMonitoringAlertHistory request was truncated, the response includes a NextToken. To retrieve the next set of alerts in the history, use the token in the next request.

§

The field used to sort results. The default is CreationTime.

§
SortOrder?: SortOrder | null
[src]

The sort order, whether Ascending or Descending, of the alert history. The default is Descending.

§
StatusEquals?: MonitoringAlertStatus | null
[src]

A filter that retrieves only alerts with a specific status.