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

CreateAlertRequest

import type { CreateAlertRequest } from "https://aws-api.deno.dev/v0.3/services/lookoutmetrics.ts?docs=full";
interface CreateAlertRequest {
Action: Action;
AlertDescription?: string | null;
AlertName: string;
AlertSensitivityThreshold: number;
AnomalyDetectorArn: string;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
Action: Action
[src]

Action that will be triggered when there is an alert.

§
AlertDescription?: string | null
[src]

A description of the alert.

§
AlertName: string
[src]

The name of the alert.

§
AlertSensitivityThreshold: number
[src]

An integer from 0 to 100 specifying the alert sensitivity threshold.

§
AnomalyDetectorArn: string
[src]

The ARN of the detector to which the alert is attached.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A list of tags to apply to the alert.