Class GetRecordsResponse
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
Represents the output of a
GetRecords
operation.
public class GetRecordsResponse : AmazonWebServiceResponse
- Inheritance
-
GetRecordsResponse
Constructors
GetRecordsResponse()
public GetRecordsResponse()
Properties
NextShardIterator
Gets and sets the property NextShardIterator.
The next position in the shard from which to start sequentially reading stream records. If set to
null
, the shard has been closed and the requested iterator
will not return any more data.
public string NextShardIterator { get; set; }
Property Value
Records
Gets and sets the property Records.
The stream records from the shard, which were retrieved using the shard iterator.
public List<Record> Records { get; set; }