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

Tags are key/value pairs defined by a user and associated with a pipeline to control access. AWS Data Pipeline allows you to associate ten tags per pipeline. For more information, see Controlling User Access to Pipelines in the AWS Data Pipeline Developer Guide.

interface Tag {
key: string;
value: string;
}

§Properties

§
key: string
[src]

The key name of a tag defined by a user. For more information, see Controlling User Access to Pipelines in the AWS Data Pipeline Developer Guide.

§
value: string
[src]

The optional value portion of a tag defined by a user. For more information, see Controlling User Access to Pipelines in the AWS Data Pipeline Developer Guide.