You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::KinesisAnalyticsV2::Types::InputStartingPositionConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing InputStartingPositionConfiguration as input to an Aws::Client method, you can use a vanilla Hash:

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

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

Returned by:

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, and start at the request timestamp 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 Data Firehose delivery stream.

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

    Possible values:

    • NOW
    • TRIM_HORIZON
    • LAST_STOPPED_POINT

Returns:

  • (String)

    The starting position on the stream.