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]

[src]

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

impl Debug for MergeShardsInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for MergeShardsInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations