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

DescribeStreamInput

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

Represents the input for DescribeStream.

interface DescribeStreamInput {
ExclusiveStartShardId?: string | null;
Limit?: number | null;
StreamName: string;
}

§Properties

§
ExclusiveStartShardId?: string | null
[src]

The shard ID of the shard to start with.

Specify this parameter to indicate that you want to describe the stream starting with the shard whose ID immediately follows ExclusiveStartShardId.

If you don't specify this parameter, the default behavior for DescribeStream is to describe the stream starting with the first shard in the stream.

§
Limit?: number | null
[src]

The maximum number of shards to return in a single call. The default value is 100. If you specify a value greater than 100, at most 100 results are returned.

§
StreamName: string
[src]

The name of the stream to describe.