Class: Aws::DynamoDBStreams::Types::GetRecordsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDBStreams::Types::GetRecordsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodbstreams/types.rb
Overview
Represents the output of a ‘GetRecords` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_shard_iterator ⇒ String
The next position in the shard from which to start sequentially reading stream records.
-
#records ⇒ Array<Types::Record>
The stream records from the shard, which were retrieved using the shard iterator.
Instance Attribute Details
#next_shard_iterator ⇒ String
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.
209 210 211 212 213 214 |
# File 'lib/aws-sdk-dynamodbstreams/types.rb', line 209 class GetRecordsOutput < Struct.new( :records, :next_shard_iterator) SENSITIVE = [] include Aws::Structure end |
#records ⇒ Array<Types::Record>
The stream records from the shard, which were retrieved using the shard iterator.
209 210 211 212 213 214 |
# File 'lib/aws-sdk-dynamodbstreams/types.rb', line 209 class GetRecordsOutput < Struct.new( :records, :next_shard_iterator) SENSITIVE = [] include Aws::Structure end |