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

ListTagsForStreamInput

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

Represents the input for ListTagsForStream.

interface ListTagsForStreamInput {
ExclusiveStartTagKey?: string | null;
Limit?: number | null;
StreamName: string;
}

§Properties

§
ExclusiveStartTagKey?: string | null
[src]

The key to use as the starting point for the list of tags. If this parameter is set, ListTagsForStream gets all tags that occur after ExclusiveStartTagKey.

§
Limit?: number | null
[src]

The number of tags to return. If this number is less than the total number of tags associated with the stream, HasMoreTags is set to true. To list additional tags, set ExclusiveStartTagKey to the last key in the response.

§
StreamName: string
[src]

The name of the stream.