Class: Aws::Kinesis::Types::MergeShardsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::MergeShardsInput
- Defined in:
- gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb
Overview
Note:
When making an API call, you may pass MergeShardsInput data as a hash:
{
stream_name: "StreamName", # required
shard_to_merge: "ShardId", # required
adjacent_shard_to_merge: "ShardId", # required
}
Represents the input for MergeShards
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#adjacent_shard_to_merge ⇒ String
The shard ID of the adjacent shard for the merge.
-
#shard_to_merge ⇒ String
The shard ID of the shard to combine with the adjacent shard for the merge.
-
#stream_name ⇒ String
The name of the stream for the merge.
Instance Attribute Details
#adjacent_shard_to_merge ⇒ String
The shard ID of the adjacent shard for the merge.
1362 1363 1364 1365 1366 1367 1368 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1362 class MergeShardsInput < Struct.new( :stream_name, :shard_to_merge, :adjacent_shard_to_merge) SENSITIVE = [] include Aws::Structure end |
#shard_to_merge ⇒ String
The shard ID of the shard to combine with the adjacent shard for the merge.
1362 1363 1364 1365 1366 1367 1368 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1362 class MergeShardsInput < Struct.new( :stream_name, :shard_to_merge, :adjacent_shard_to_merge) SENSITIVE = [] include Aws::Structure end |
#stream_name ⇒ String
The name of the stream for the merge.
1362 1363 1364 1365 1366 1367 1368 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1362 class MergeShardsInput < Struct.new( :stream_name, :shard_to_merge, :adjacent_shard_to_merge) SENSITIVE = [] include Aws::Structure end |