AWS Kinesis · Schema

DestinationSchema

Describes the data format when records are written to the destination in a SQL-based Kinesis Data Analytics application.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
RecordFormatType object
View JSON Schema on GitHub

JSON Schema

kinesis-destinationschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DestinationSchema",
  "title": "DestinationSchema",
  "type": "object",
  "required": [
    "RecordFormatType"
  ],
  "properties": {
    "RecordFormatType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecordFormatType"
        },
        {
          "description": "Specifies the format of the records on the output stream."
        }
      ]
    }
  },
  "description": "Describes the data format when records are written to the destination in a SQL-based Kinesis Data Analytics application. "
}