Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ResourceTag

import type { ResourceTag } from "https://aws-api.deno.dev/v0.4/services/swf.ts?docs=full";

Tags are key-value pairs that can be associated with Amazon SWF state machines and activities.

Tags may only contain unicode letters, digits, whitespace, or these symbols: _ . : / = + - @.

interface ResourceTag {
key: string;
value?: string | null;
}

§Properties

§
key: string
[src]

The key of a tag.

§
value?: string | null
[src]

The value of a tag.