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

Tags are labels that you can use to identify and organize your private CAs. Each tag consists of a key and an optional value. You can associate up to 50 tags with a private CA. To add one or more tags to a private CA, call the TagCertificateAuthority action. To remove a tag, call the UntagCertificateAuthority action.

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

§Properties

§
Key: string
[src]

Key (name) of the tag.

§
Value?: string | null
[src]

Value of the tag.