Class: Aws::KinesisAnalyticsV2::Types::InputStartingPositionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::InputStartingPositionConfiguration
- Defined in:
- gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#input_starting_position ⇒ String
The starting position on the stream.
Instance Attribute Details
#input_starting_position ⇒ String
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.
3883 3884 3885 3886 3887 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 3883 class InputStartingPositionConfiguration < Struct.new( :input_starting_position) SENSITIVE = [] include Aws::Structure end |