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

Anomaly

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

An unusual cost pattern. This consists of the detailed metadata and the current status of the anomaly object.

interface Anomaly {
AnomalyEndDate?: string | null;
AnomalyId: string;
AnomalyScore: AnomalyScore;
AnomalyStartDate?: string | null;
DimensionValue?: string | null;
Feedback?: AnomalyFeedbackType | null;
Impact: Impact;
MonitorArn: string;
RootCauses?: RootCause[] | null;
}

§Properties

§
AnomalyEndDate?: string | null
[src]

The last day the anomaly is detected.

§
AnomalyId: string
[src]

The unique identifier for the anomaly.

§
AnomalyScore: AnomalyScore
[src]

The latest and maximum score for the anomaly.

§
AnomalyStartDate?: string | null
[src]

The first day the anomaly is detected.

§
DimensionValue?: string | null
[src]

The dimension for the anomaly (for example, an Amazon Web Services service in a service monitor).

§
Feedback?: AnomalyFeedbackType | null
[src]

The feedback value.

§
Impact: Impact
[src]

The dollar impact for the anomaly.

§
MonitorArn: string
[src]

The Amazon Resource Name (ARN) for the cost monitor that generated this anomaly.

§
RootCauses?: RootCause[] | null
[src]

The list of identified root causes for the anomaly.