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

A tag is a label that you assign to a Timestream database and/or table. Each tag consists of a key and an optional value, both of which you define. Tags enable you to categorize databases and/or tables, for example, by purpose, owner, or environment.

interface Tag {
Key: string;
Value: string;
}

§Properties

§
Key: string
[src]

The key of the tag. Tag keys are case sensitive.

§
Value: string
[src]

The value of the tag. Tag values are case sensitive and can be null.