Struct rusoto_kinesis::UpdateShardCountOutput[][src]

pub struct UpdateShardCountOutput {
    pub current_shard_count: Option<i64>,
    pub stream_name: Option<String>,
    pub target_shard_count: Option<i64>,
}

Fields

The current number of shards.

The name of the stream.

The updated number of shards.

Trait Implementations

impl Default for UpdateShardCountOutput
[src]

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

impl Debug for UpdateShardCountOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateShardCountOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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