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

Impact

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

The dollar value of the anomaly.

interface Impact {
MaxImpact: number;
TotalActualSpend?: number | null;
TotalExpectedSpend?: number | null;
TotalImpact?: number | null;
TotalImpactPercentage?: number | null;
}

§Properties

§
MaxImpact: number
[src]

The maximum dollar value that's observed for an anomaly.

§
TotalActualSpend?: number | null
[src]

The cumulative dollar amount that was actually spent during the anomaly.

§
TotalExpectedSpend?: number | null
[src]

The cumulative dollar amount that was expected to be spent during the anomaly. It is calculated using advanced machine learning models to determine the typical spending pattern based on historical data for a customer.

§
TotalImpact?: number | null
[src]

The cumulative dollar difference between the total actual spend and total expected spend. It is calculated as TotalActualSpend - TotalExpectedSpend.

§
TotalImpactPercentage?: number | null
[src]

The cumulative percentage difference between the total actual spend and total expected spend. It is calculated as (TotalImpact / TotalExpectedSpend) * 100. When TotalExpectedSpend is zero, this field is omitted. Expected spend can be zero in situations such as when you start to use a service for the first time.