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

AnomalySubscription

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

The association between a monitor, threshold, and list of subscribers used to deliver notifications about anomalies detected by a monitor that exceeds a threshold. The content consists of the detailed metadata and the current status of the AnomalySubscription object.

interface AnomalySubscription {
AccountId?: string | null;
MonitorArnList: string[];
Subscribers: Subscriber[];
SubscriptionArn?: string | null;
SubscriptionName: string;
Threshold: number;
}

§Properties

§
AccountId?: string | null
[src]

Your unique account identifier.

§

The frequency that anomaly reports are sent over email.

§
MonitorArnList: string[]
[src]

A list of cost anomaly monitors.

§
Subscribers: Subscriber[]
[src]

A list of subscribers to notify.

§
SubscriptionArn?: string | null
[src]

The AnomalySubscription Amazon Resource Name (ARN).

§
SubscriptionName: string
[src]

The name for the subscription.

§
Threshold: number
[src]

The dollar value that triggers a notification if the threshold is exceeded.