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.4/services/ecr.ts?docs=full";

The metadata to apply to a resource to help you categorize and organize them. Each tag consists of a key and a 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 Tag {
Key?: string | null;
Value?: string | null;
}

§Properties

§
Key?: string | null
[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 | null
[src]

A value acts as a descriptor within a tag category (key).