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

CostCategoryValues

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

The Cost Categories values used for filtering the costs.

If Values and Key are not specified, the ABSENT MatchOption is applied to all Cost Categories. That is, it filters on resources that aren't mapped to any Cost Categories.

If Values is provided and Key isn't specified, the ABSENT MatchOption is applied to the Cost Categories Key only. That is, it filters on resources without the given Cost Categories key.

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

§Properties

§
Key?: string | null
[src]
§
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. The default values for MatchOptions is EQUALS and CASE_SENSITIVE.

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

The specific value of the Cost Category.