InputStartingPositionConfiguration

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

Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

Properties

Name Type Description
InputStartingPosition object
View JSON Schema on GitHub

JSON Schema

amazon-managed-apache-flink-input-starting-position-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-schema/amazon-managed-apache-flink-input-starting-position-configuration-schema.json",
  "title": "InputStartingPositionConfiguration",
  "description": "Describes the point at which the application reads from the streaming source.",
  "type": "object",
  "properties": {
    "InputStartingPosition": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InputStartingPosition"
        },
        {
          "description": "<p>The starting position on the stream.</p> <ul> <li> <p> <code>NOW</code> - Start reading just after the most recent record in the stream, and start at the request timestamp that the customer issued.</p> </li> <li> <p> <code>TRIM_HORIZON</code> - 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.</p> </li> <li> <p> <code>LAST_STOPPED_POINT</code> - Resume reading from where the application last stopped reading.</p> </li> </ul>"
        }
      ]
    }
  }
}