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

CreateStreamInput

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

Represents the input for CreateStream.

interface CreateStreamInput {
ShardCount?: number | null;
StreamModeDetails?: StreamModeDetails | null;
StreamName: string;
}

§Properties

§
ShardCount?: number | null
[src]

The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.

§
StreamModeDetails?: StreamModeDetails | null
[src]

Indicates the capacity mode of the data stream. Currently, in Kinesis Data Streams, you can choose between an on-demand capacity mode and a provisioned capacity mode for your data streams.

§
StreamName: string
[src]

A name to identify the stream. The stream name is scoped to the Amazon Web Services account used by the application that creates the stream. It is also scoped by Amazon Web Services Region. That is, two streams in two different Amazon Web Services accounts can have the same name. Two streams in the same Amazon Web Services account but in two different Regions can also have the same name.