Class: Aws::DynamoDBStreams::Types::GetRecordsOutput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#next_shard_iteratorString

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.

Returns:

  • (String)


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

#recordsArray<Types::Record>

The stream records from the shard, which were retrieved using the shard iterator.

Returns:



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