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

DimensionValues

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

The metadata that you can use to filter and group your results. You can use GetDimensionValues to find specific values.

interface DimensionValues {
Key?: Dimension | null;
MatchOptions?: MatchOption[] | null;
Values?: string[] | null;
}

§Properties

§
Key?: Dimension | null
[src]

The names of the metadata types that you can use to filter and group your results. For example, AZ returns a list of Availability Zones.

Not all dimensions are supported in each API. Refer to the documentation for each specific API to see what is supported.

LINK_ACCOUNT_NAME and SERVICE_CODE can only be used in CostCategoryRule.

ANOMALY_TOTAL_IMPACT_ABSOLUTE and ANOMALY_TOTAL_IMPACT_PERCENTAGE can only be used in AnomalySubscriptions.

§
MatchOptions?: MatchOption[] | null
[src]

The match options that you can use to filter your results.

MatchOptions is only applicable for actions related to Cost Category and Anomaly Subscriptions. Refer to the documentation for each specific API to see what is supported.

The default values for MatchOptions are EQUALS and CASE_SENSITIVE.

§
Values?: string[] | null
[src]

The metadata values that you can use to filter and group your results. You can use GetDimensionValues to find specific values.