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

TagRef

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

Optional metadata that you apply to a resource to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

interface TagRef {
key: string;
value: string;
}

§Properties

§
key: string
[src]

One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values.

§
value: string
[src]

The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key).