Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DataFormatConversionConfiguration

import type { DataFormatConversionConfiguration } from "https://aws-api.deno.dev/v0.4/services/firehose.ts?docs=full";

Specifies that you want Kinesis Data Firehose to convert data from the JSON format to the Parquet or ORC format before writing it to Amazon S3. Kinesis Data Firehose uses the serializer and deserializer that you specify, in addition to the column information from the Amazon Web Services Glue table, to deserialize your input data from JSON and then serialize it to the Parquet or ORC format. For more information, see Kinesis Data Firehose Record Format Conversion.

interface DataFormatConversionConfiguration {
Enabled?: boolean | null;
InputFormatConfiguration?: InputFormatConfiguration | null;
OutputFormatConfiguration?: OutputFormatConfiguration | null;
SchemaConfiguration?: SchemaConfiguration | null;
}

§Properties

§
Enabled?: boolean | null
[src]

Defaults to true. Set it to false if you want to disable format conversion while preserving the configuration details.

§
InputFormatConfiguration?: InputFormatConfiguration | null
[src]

Specifies the deserializer that you want Kinesis Data Firehose to use to convert the format of your data from JSON. This parameter is required if Enabled is set to true.

§
OutputFormatConfiguration?: OutputFormatConfiguration | null
[src]

Specifies the serializer that you want Kinesis Data Firehose to use to convert the format of your data to the Parquet or ORC format. This parameter is required if Enabled is set to true.

§
SchemaConfiguration?: SchemaConfiguration | null
[src]

Specifies the Amazon Web Services Glue Data Catalog table that contains the column information. This parameter is required if Enabled is set to true.