AWS Kinesis · Schema

Processor

Describes a data processor.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
Type object
Parameters object
View JSON Schema on GitHub

JSON Schema

kinesis-processor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Processor",
  "title": "Processor",
  "type": "object",
  "required": [
    "Type"
  ],
  "properties": {
    "Type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProcessorType"
        },
        {
          "description": "The type of processor."
        }
      ]
    },
    "Parameters": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProcessorParameterList"
        },
        {
          "description": "The processor parameters."
        }
      ]
    }
  },
  "description": "Describes a data processor."
}