Amazon Managed Apache Flink Record Format Structure

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: 2 Required: 1
Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

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

Properties

RecordFormatType MappingParameters

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-record-format-structure.json",
  "name": "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"
  ]
}