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)


209
210
211
212
213
214
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 209

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:



209
210
211
212
213
214
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 209

class GetRecordsOutput < Struct.new(
  :records,
  :next_shard_iterator)
  SENSITIVE = []
  include Aws::Structure
end