Struct rusoto_kinesis::CreateStreamInput [] [src]

pub struct CreateStreamInput {
    pub shard_count: i64,
    pub stream_name: String,
}

Represents the input for CreateStream.

Fields

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.

DefaultShardLimit;

A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by region. That is, two streams in two different AWS accounts can have the same name, and two streams in the same AWS account but in two different regions can have the same name.

Trait Implementations

impl Default for CreateStreamInput
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for CreateStreamInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateStreamInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations