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

The Tag type enables you to specify a key-value pair that can be used to store information about an CloudFormation stack.

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

§Properties

§
Key: string
[src]

Required. A string used to identify this tag. You can specify a maximum of 128 characters for a tag key. Tags owned by Amazon Web Services (Amazon Web Services) have the reserved prefix: aws:.

§
Value: string
[src]

Required. A string containing the value for this tag. You can specify a maximum of 256 characters for a tag value.