You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Kinesis::Types::MergeShardsInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing MergeShardsInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  stream_name: "StreamName", # required
  shard_to_merge: "ShardId", # required
  adjacent_shard_to_merge: "ShardId", # required
}

Represents the input for MergeShards.

Instance Attribute Summary collapse

Instance Attribute Details

#adjacent_shard_to_mergeString

The shard ID of the adjacent shard for the merge.

Returns:

  • (String)

    The shard ID of the adjacent shard for the merge.

#shard_to_mergeString

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

Returns:

  • (String)

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

#stream_nameString

The name of the stream for the merge.

Returns:

  • (String)

    The name of the stream for the merge.