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

ListTagsResult

import type { ListTagsResult } from "https://aws-api.deno.dev/v0.3/services/opsworks.ts?docs=full";

Contains the response to a ListTags request.

interface ListTagsResult {
NextToken?: string | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
NextToken?: string | null
[src]

If a paginated request does not return all of the remaining results, this parameter is set to a token that you can assign to the request object's NextToken parameter to get the next set of results. If the previous paginated request returned all of the remaining results, this parameter is set to null.

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

A set of key-value pairs that contain tag keys and tag values that are attached to a stack or layer.