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

Serializer

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

The serializer that you want Kinesis Data Firehose to use to convert data to the target format before writing it to Amazon S3. Kinesis Data Firehose supports two types of serializers: the ORC SerDe and the Parquet SerDe.

interface Serializer {
OrcSerDe?: OrcSerDe | null;
ParquetSerDe?: ParquetSerDe | null;
}

§Properties

§
OrcSerDe?: OrcSerDe | null
[src]

A serializer to use for converting data to the ORC format before storing it in Amazon S3. For more information, see Apache ORC.

§
ParquetSerDe?: ParquetSerDe | null
[src]

A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see Apache Parquet.