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

A structure that contains information about a tag.

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

§Properties

§
Key?: string | null
[src]

The key identifier, or name, of the tag.

§
Value?: string | null
[src]

The string value associated with the key of the tag.