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

A key-value pair (the value is optional) that you can define and assign to AWS resources. If you specify a tag that already exists, the tag value is replaced with the value that you specify in the request. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50. For more information, see Using Tagging.

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

§Properties

§
Key: string
[src]

The key of the key-value tag.

§
Value?: string | null
[src]

The value of the key-value tag. The value is optional.