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

A custom key-value pair associated with a resource within your organization.

You can attach tags to any of the following organization resources.

  • Amazon Web Services account
  • Organizational unit (OU)
  • Organization root
  • Policy
interface Tag {
Key: string;
Value: string;
}

§Properties

§
Key: string
[src]

The key identifier, or name, of the tag.

§
Value: string
[src]

The string value that's associated with the key of the tag. You can set the value of a tag to an empty string, but you can't set the value of a tag to null.