Struct rusoto_kinesis::UpdateShardCountInput[][src]

pub struct UpdateShardCountInput {
    pub scaling_type: String,
    pub stream_name: String,
    pub target_shard_count: i64,
}

Fields

The scaling type. Uniform scaling creates shards of equal size.

The name of the stream.

The new number of shards.

Trait Implementations

impl Default for UpdateShardCountInput
[src]

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

impl Debug for UpdateShardCountInput
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateShardCountInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateShardCountInput
[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