Class: Aws::KinesisAnalytics::Types::InputStartingPositionConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-kinesisanalytics/types.rb

Overview

Note:

When making an API call, you may pass InputStartingPositionConfiguration data as a hash:

{
  input_starting_position: "NOW", # accepts NOW, TRIM_HORIZON, LAST_STOPPED_POINT
}

Describes the point at which the application reads from the streaming source.

Instance Attribute Summary collapse

Instance Attribute Details

#input_starting_positionString

The starting position on the stream.

  • ‘NOW` - Start reading just after the most recent record in the stream, start at the request time stamp that the customer issued.

  • ‘TRIM_HORIZON` - Start reading at the last untrimmed record in the stream, which is the oldest record available in the stream. This option is not available for an Amazon Kinesis Firehose delivery stream.

  • ‘LAST_STOPPED_POINT` - Resume reading from where the application last stopped reading.

Returns:

  • (String)


1753
1754
1755
1756
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1753

class InputStartingPositionConfiguration < Struct.new(
  :input_starting_position)
  include Aws::Structure
end