AWS Kinesis · Schema

PutRecordBatchInput

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
DeliveryStreamName object
Records object
View JSON Schema on GitHub

JSON Schema

kinesis-putrecordbatchinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PutRecordBatchInput",
  "title": "PutRecordBatchInput",
  "type": "object",
  "required": [
    "DeliveryStreamName",
    "Records"
  ],
  "properties": {
    "DeliveryStreamName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeliveryStreamName"
        },
        {
          "description": "The name of the delivery stream."
        }
      ]
    },
    "Records": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PutRecordBatchRequestEntryList"
        },
        {
          "description": "One or more records."
        }
      ]
    }
  }
}