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

Tag

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

A key and value pair. This data type is used as a request parameter in the "SetTagsForResource" action and a response element in the "ListTagsForResource" action.

interface Tag {
key: string;
value?: string | null;
}

§Properties

§
key: string
[src]

A tag key.

§
value?: string | null
[src]

A value assigned to a tag key.