Class: Aws::Kinesis::Types::MergeShardsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::MergeShardsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesis/types.rb
Overview
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_arn ⇒ String
The ARN of the stream.
-
#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.
1398 1399 1400 1401 1402 1403 1404 1405 |
# File 'lib/aws-sdk-kinesis/types.rb', line 1398 class MergeShardsInput < Struct.new( :stream_name, :shard_to_merge, :adjacent_shard_to_merge, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#shard_to_merge ⇒ String
The shard ID of the shard to combine with the adjacent shard for the merge.
1398 1399 1400 1401 1402 1403 1404 1405 |
# File 'lib/aws-sdk-kinesis/types.rb', line 1398 class MergeShardsInput < Struct.new( :stream_name, :shard_to_merge, :adjacent_shard_to_merge, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#stream_arn ⇒ String
The ARN of the stream.
1398 1399 1400 1401 1402 1403 1404 1405 |
# File 'lib/aws-sdk-kinesis/types.rb', line 1398 class MergeShardsInput < Struct.new( :stream_name, :shard_to_merge, :adjacent_shard_to_merge, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#stream_name ⇒ String
The name of the stream for the merge.
1398 1399 1400 1401 1402 1403 1404 1405 |
# File 'lib/aws-sdk-kinesis/types.rb', line 1398 class MergeShardsInput < Struct.new( :stream_name, :shard_to_merge, :adjacent_shard_to_merge, :stream_arn) SENSITIVE = [] include Aws::Structure end |