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

A key-value pair. A tag consists of a tag key and a tag value. Tag keys and tag values are both required, but tag values can be empty (null) strings.

For information about the rules that apply to tag keys and tag values, see User-Defined Tag Restrictions in the Amazon Web Services Billing and Cost Management User Guide.

interface Tag {
TagKey: string;
TagValue: string;
}

§Properties

§
TagKey: string
[src]

The key of the tag.

§
TagValue: string
[src]

The value of the tag.