Amazon Managed Apache Flink Mapping Parameters Structure

When you configure a SQL-based Kinesis Data Analytics application's 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.

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

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

Properties

JSONMappingParameters CSVMappingParameters

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-mapping-parameters-structure.json",
  "name": "MappingParameters",
  "description": "When you configure a SQL-based Kinesis Data Analytics application's 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.",
  "type": "object",
  "properties": {
    "JSONMappingParameters": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JSONMappingParameters"
        },
        {
          "description": "Provides additional mapping information when JSON is the record format on the streaming source."
        }
      ]
    },
    "CSVMappingParameters": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CSVMappingParameters"
        },
        {
          "description": "Provides additional mapping information when the record format uses delimiters (for example, CSV)."
        }
      ]
    }
  }
}