AWS Kinesis · Schema

InputFormatConfiguration

Specifies the deserializer you want to use to convert the format of the input data. This parameter is required if Enabled is set to true.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
Deserializer object
View JSON Schema on GitHub

JSON Schema

kinesis-inputformatconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InputFormatConfiguration",
  "title": "InputFormatConfiguration",
  "type": "object",
  "properties": {
    "Deserializer": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Deserializer"
        },
        {
          "description": "Specifies which deserializer to use. You can choose either the Apache Hive JSON SerDe or the OpenX JSON SerDe. If both are non-null, the server rejects the request."
        }
      ]
    }
  },
  "description": "Specifies the deserializer you want to use to convert the format of the input data. This parameter is required if <code>Enabled</code> is set to true."
}