InputSchemaUpdate

Describes updates for an SQL-based Kinesis Data Analytics application's input schema.

Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

Properties

Name Type Description
RecordFormatUpdate object
RecordEncodingUpdate object
RecordColumnUpdates object
View JSON Schema on GitHub

JSON Schema

amazon-managed-apache-flink-input-schema-update-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-schema-update-schema.json",
  "title": "InputSchemaUpdate",
  "description": "Describes updates for an SQL-based Kinesis Data Analytics application's input schema.",
  "type": "object",
  "properties": {
    "RecordFormatUpdate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecordFormat"
        },
        {
          "description": "Specifies the format of the records on the streaming source."
        }
      ]
    },
    "RecordEncodingUpdate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecordEncoding"
        },
        {
          "description": "Specifies the encoding of the records in the streaming source; for example, UTF-8."
        }
      ]
    },
    "RecordColumnUpdates": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecordColumns"
        },
        {
          "description": "A list of <code>RecordColumn</code> objects. Each object describes the mapping of the streaming source element to the corresponding column in the in-application stream."
        }
      ]
    }
  }
}