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

AlertSummary

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

Provides a summary of an alert's configuration.

interface AlertSummary {
AlertArn?: string | null;
AlertName?: string | null;
AlertSensitivityThreshold?: number | null;
AlertStatus?: AlertStatus | null;
AlertType?: AlertType | null;
AnomalyDetectorArn?: string | null;
CreationTime?: Date | number | null;
LastModificationTime?: Date | number | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
AlertArn?: string | null
[src]

The ARN of the alert.

§
AlertName?: string | null
[src]

The name of the alert.

§
AlertSensitivityThreshold?: number | null
[src]

The minimum severity for an anomaly to trigger the alert.

§
AlertStatus?: AlertStatus | null
[src]

The status of the alert.

§
AlertType?: AlertType | null
[src]

The type of the alert.

§
AnomalyDetectorArn?: string | null
[src]

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

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

The time at which the alert was created.

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

The time at which the alert was last modified.

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

The alert's tags.