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