RecordFormat

For a SQL-based Kinesis Data Analytics application, describes the record format and relevant mapping information that should be applied to schematize the records on the stream.

Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

Properties

Name Type Description
RecordFormatType object
MappingParameters object
View JSON Schema on GitHub

JSON Schema

amazon-managed-apache-flink-record-format-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-record-format-schema.json",
  "title": "RecordFormat",
  "description": " For a SQL-based Kinesis Data Analytics application, describes the record format and relevant mapping information that should be applied to schematize the records on the stream. ",
  "type": "object",
  "properties": {
    "RecordFormatType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecordFormatType"
        },
        {
          "description": "The type of record format."
        }
      ]
    },
    "MappingParameters": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MappingParameters"
        },
        {
          "description": "When you configure application input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source."
        }
      ]
    }
  },
  "required": [
    "RecordFormatType"
  ]
}