Class: Aws::KeyspacesStreams::Types::IteratorDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::KeyspacesStreams::Types::IteratorDescription
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-keyspacesstreams/types.rb
Overview
Provides information about the current iterator.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#iterator_position ⇒ String
Indicates the current iterator’s position within the shard.
Instance Attribute Details
#iterator_position ⇒ String
Indicates the current iterator’s position within the shard. The possible values are:
-
‘AT_TIP` - No more records are currently available.
-
‘BEHIND_TIP` - Additional records may be available.
Stream progresses in absence of customer records. ‘BEHIND_TIP` with an empty `changeRecords` list indicates the stream is progressing but no customer records are available at this position. Continue polling normally.
302 303 304 305 306 |
# File 'lib/aws-sdk-keyspacesstreams/types.rb', line 302 class IteratorDescription < Struct.new( :iterator_position) SENSITIVE = [] include Aws::Structure end |