Class: Aws::DynamoDBStreams::Types::GetShardIteratorOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDBStreams::Types::GetShardIteratorOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodbstreams/types.rb
Overview
Represents the output of a ‘GetShardIterator` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#shard_iterator ⇒ String
The position in the shard from which to start reading stream records sequentially.
Instance Attribute Details
#shard_iterator ⇒ String
The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.
274 275 276 277 278 |
# File 'lib/aws-sdk-dynamodbstreams/types.rb', line 274 class GetShardIteratorOutput < Struct.new( :shard_iterator) SENSITIVE = [] include Aws::Structure end |