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

A map of the key-value pairs for the resource tag.

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

§Properties

§
ResourceArn: string
[src]

The Amazon Resource Name (ARN) of the resource.

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