AWSKinesisGetRecordsOutput
Objective-C
@interface AWSKinesisGetRecordsOutput
Swift
class AWSKinesisGetRecordsOutput
Represents the output for GetRecords.
Required parameters: [Records]
-
The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates that record processing is caught up, and there are no new records to process at this moment.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable millisBehindLatest;Swift
var millisBehindLatest: NSNumber? { get set } -
The next position in the shard from which to start sequentially reading data records. If set to
null, the shard has been closed and the requested iterator does not return any more data.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextShardIterator;Swift
var nextShardIterator: String? { get set } -
The data records retrieved from the shard.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSKinesisRecord *> *_Nullable records;Swift
var records: [AWSKinesisRecord]? { get set }
View on GitHub
Install in Dash
AWSKinesisGetRecordsOutput Class Reference