AWSKinesisMergeShardsInput
Objective-C
@interface AWSKinesisMergeShardsInput
Swift
class AWSKinesisMergeShardsInput
Represents the input for MergeShards
.
Required parameters: [StreamName, ShardToMerge, AdjacentShardToMerge]
-
The shard ID of the adjacent shard for the merge.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable adjacentShardToMerge;
Swift
var adjacentShardToMerge: String? { get set }
-
The shard ID of the shard to combine with the adjacent shard for the merge.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable shardToMerge;
Swift
var shardToMerge: String? { get set }
-
The name of the stream for the merge.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable streamName;
Swift
var streamName: String? { get set }