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

TagFilter

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

A tag key and optional list of possible values that you can use to filter results for tagged resources.

interface TagFilter {
tagKey?: string | null;
tagValues?: string[] | null;
}

§Properties

§
tagKey?: string | null
[src]

The tag key. This must have a valid string value and can't be empty.

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

A list of zero or more tag values. If no values are provided, then the filter matches any tag with the specified key, regardless of its value.