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

TagResourceRequest

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

The tags to add to the resource. A tag is an array of key-value pairs. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

interface TagResourceRequest {
ResourceArn: string;
Tags: {
[key: string]: string | null | undefined;
}
;
}

§Properties

§
ResourceArn: string
[src]

The Amazon Resource Name (ARN) that identifies the AWS Elemental MediaConnect resource to which to add tags.

§
Tags: {
[key: string]: string | null | undefined;
}
[src]

A map from tag keys to values. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.