Class GetRecordsRequest
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
Container for the parameters to the GetRecords operation. Retrieves the stream records from a given shard.
Specify a shard iterator using the
ShardIterator
parameter. The shard
iterator specifies the position in the shard from which you want to start reading
stream records sequentially. If there are no stream records available in the portion
of the shard that the iterator points to, GetRecords
returns an empty
list. Note that it might take multiple calls to get to a portion of the shard that
contains stream records.
note
GetRecords
can retrieve a maximum of 1 MB of data or 1000 stream records,
whichever comes first.
public class GetRecordsRequest : AmazonDynamoDBStreamsRequest
- Inheritance
-
GetRecordsRequest
Constructors
GetRecordsRequest()
public GetRecordsRequest()
Properties
Limit
Gets and sets the property Limit.
The maximum number of records to return from the shard. The upper limit is 1000.
public int Limit { get; set; }
Property Value
ShardIterator
Gets and sets the property ShardIterator.
A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
public string ShardIterator { get; set; }