Class: Aws::DynamoDBStreams::Types::GetRecordsInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb

Overview

Represents the input of a GetRecords operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#limitInteger

The maximum number of records to return from the shard. The upper limit is 1000.

Returns:

  • (Integer)


187
188
189
190
191
192
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 187

class GetRecordsInput < Struct.new(
  :shard_iterator,
  :limit)
  SENSITIVE = []
  include Aws::Structure
end

#shard_iteratorString

A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.

Returns:

  • (String)


187
188
189
190
191
192
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 187

class GetRecordsInput < Struct.new(
  :shard_iterator,
  :limit)
  SENSITIVE = []
  include Aws::Structure
end