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 AWS Region. That is, two streams in two different AWS accounts can have the same name. Two streams in the same AWS account but in two different Regions can also have the same name.

Trait Implementations

impl Default for CreateStreamInput
[src]

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

impl Debug for CreateStreamInput
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateStreamInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateStreamInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations