Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

InputStartingPositionConfiguration

import type { InputStartingPositionConfiguration } from "https://aws-api.deno.dev/v0.4/services/kinesisanalytics.ts?docs=full";

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

interface InputStartingPositionConfiguration {
InputStartingPosition?: InputStartingPosition | null;
}

§Properties

§
InputStartingPosition?: InputStartingPosition | null
[src]

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.