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

ListStreamsInput

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

Represents the input of a ListStreams operation.

interface ListStreamsInput {
ExclusiveStartStreamArn?: string | null;
Limit?: number | null;
TableName?: string | null;
}

§Properties

§
ExclusiveStartStreamArn?: string | null
[src]

The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn in the previous operation.

§
Limit?: number | null
[src]

The maximum number of streams to return. The upper limit is 100.

§
TableName?: string | null
[src]

If this parameter is provided, then only the streams associated with this table name are returned.