AWSKinesisDescribeStreamInput

Objective-C

@interface AWSKinesisDescribeStreamInput

Swift

class AWSKinesisDescribeStreamInput

Represents the input for DescribeStream.

Required parameters: [StreamName]

  • The shard ID of the shard to start with.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable exclusiveStartShardId;

    Swift

    var exclusiveStartShardId: String? { get set }
  • The maximum number of shards to return in a single call. The default value is 100. If you specify a value greater than 100, at most 100 shards are returned.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable limit;

    Swift

    var limit: NSNumber? { get set }
  • The name of the stream to describe.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable streamName;

    Swift

    var streamName: String? { get set }