AWS Kinesis · Schema

ProcessingConfiguration

Describes a data processing configuration.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
Enabled object
Processors object
View JSON Schema on GitHub

JSON Schema

kinesis-processingconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProcessingConfiguration",
  "title": "ProcessingConfiguration",
  "type": "object",
  "properties": {
    "Enabled": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanObject"
        },
        {
          "description": "Enables or disables data processing."
        }
      ]
    },
    "Processors": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProcessorList"
        },
        {
          "description": "The data processors."
        }
      ]
    }
  },
  "description": "Describes a data processing configuration."
}