Amazon Managed Apache Flink Input Schema Update Structure

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

Type: object Properties: 3
Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

InputSchemaUpdate is a JSON Structure definition published by Amazon Managed Service for Apache Flink, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

RecordFormatUpdate RecordEncodingUpdate RecordColumnUpdates

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-structure/amazon-managed-apache-flink-input-schema-update-structure.json",
  "name": "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."
        }
      ]
    }
  }
}