Class: Aws::KeyspacesStreams::Types::IteratorDescription

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#iterator_positionString

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.

Returns:

  • (String)


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