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

Creates a new Tag resource to represent a tag.

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

§Properties

§
ResourceArn: string
[src]

The resource ARN for the tag.

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

The collection of tags. Each tag element is associated with a given resource.