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

TagValues

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

The values that are available for a tag.

If Values and Key aren't specified, the ABSENT MatchOption is applied to all tags. That is, it's filtered on resources with no tags.

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

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

§Properties

§
Key?: string | null
[src]

The key for the tag.

§
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 are EQUALS and CASE_SENSITIVE.

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

The specific value of the tag.