AWS Kinesis · Schema

PutRecordOutput

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
RecordId object
Encrypted object
View JSON Schema on GitHub

JSON Schema

kinesis-putrecordoutput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PutRecordOutput",
  "title": "PutRecordOutput",
  "type": "object",
  "required": [
    "RecordId"
  ],
  "properties": {
    "RecordId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PutResponseRecordId"
        },
        {
          "description": "The ID of the record."
        }
      ]
    },
    "Encrypted": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanObject"
        },
        {
          "description": "Indicates whether server-side encryption (SSE) was enabled during this operation."
        }
      ]
    }
  }
}