Struct rusoto_kinesis::MergeShardsInput[][src]

pub struct MergeShardsInput {
    pub adjacent_shard_to_merge: String,
    pub shard_to_merge: String,
    pub stream_name: String,
}

Represents the input for MergeShards.

Fields

The shard ID of the adjacent shard for the merge.

The shard ID of the shard to combine with the adjacent shard for the merge.

The name of the stream for the merge.

Trait Implementations

impl Default for MergeShardsInput
[src]

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

impl Debug for MergeShardsInput
[src]

Formats the value using the given formatter. Read more

impl Clone for MergeShardsInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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