AWS Kinesis · Schema

OutputFormatConfiguration

Specifies the serializer that you want Kinesis Data Firehose to use to convert the format of your data before it writes it to Amazon S3. This parameter is required if Enabled is set to true.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
Serializer object
View JSON Schema on GitHub

JSON Schema

kinesis-outputformatconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OutputFormatConfiguration",
  "title": "OutputFormatConfiguration",
  "type": "object",
  "properties": {
    "Serializer": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Serializer"
        },
        {
          "description": "Specifies which serializer to use. You can choose either the ORC SerDe or the Parquet SerDe. If both are non-null, the server rejects the request."
        }
      ]
    }
  },
  "description": "Specifies the serializer that you want Kinesis Data Firehose to use to convert the format of your data before it writes it to Amazon S3. This parameter is required if <code>Enabled</code> is set to true."
}