AWS Kinesis · Schema

Record

The unit of data in a delivery stream.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
Data object
View JSON Schema on GitHub

JSON Schema

kinesis-record-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Record",
  "title": "Record",
  "type": "object",
  "required": [
    "Data"
  ],
  "properties": {
    "Data": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Data"
        },
        {
          "description": "The data blob, which is base64-encoded when the blob is serialized. The maximum size of the data blob, before base64-encoding, is 1,000 KiB."
        }
      ]
    }
  },
  "description": "The unit of data in a delivery stream."
}