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

A tag that can be added to an MemoryDB resource. Tags are composed of a Key/Value pair. You can use tags to categorize and track all your MemoryDB resources. When you add or remove tags on clusters, those actions will be replicated to all nodes in the cluster. A tag with a null Value is permitted. For more information, see Tagging your MemoryDB resources

interface Tag {
Key?: string | null;
Value?: string | null;
}

§Properties

§
Key?: string | null
[src]

The key for the tag. May not be null.

§
Value?: string | null
[src]

The tag's value. May be null.