Class: Aws::DynamoDBStreams::Types::GetRecordsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDBStreams::Types::GetRecordsInput
- 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
-
#limit ⇒ Integer
The maximum number of records to return from the shard.
-
#shard_iterator ⇒ String
A shard iterator that was retrieved from a previous GetShardIterator operation.
Instance Attribute Details
#limit ⇒ Integer
The maximum number of records to return from the shard. The upper limit is 1000.
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_iterator ⇒ String
A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.
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 |