Class: Aws::DynamoDBStreams::Types::GetRecordsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDBStreams::Types::GetRecordsOutput
- Defined in:
- gems/aws-sdk-dynamodbstreams/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.
215 216 217 218 219 220 |
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 215 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.
215 216 217 218 219 220 |
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 215 class GetRecordsOutput < Struct.new( :records, :next_shard_iterator) SENSITIVE = [] include Aws::Structure end |