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

Deserializer

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

The deserializer you want Kinesis Data Firehose to use for converting the input data from JSON. Kinesis Data Firehose then serializes the data to its final format using the "Serializer". Kinesis Data Firehose supports two types of deserializers: the Apache Hive JSON SerDe and the OpenX JSON SerDe.

interface Deserializer {
HiveJsonSerDe?: HiveJsonSerDe | null;
OpenXJsonSerDe?: OpenXJsonSerDe | null;
}

§Properties

§
HiveJsonSerDe?: HiveJsonSerDe | null
[src]

The native Hive / HCatalog JsonSerDe. Used by Kinesis Data Firehose for deserializing data, which means converting it from the JSON format in preparation for serializing it to the Parquet or ORC format. This is one of two deserializers you can choose, depending on which one offers the functionality you need. The other option is the OpenX SerDe.

§
OpenXJsonSerDe?: OpenXJsonSerDe | null
[src]

The OpenX SerDe. Used by Kinesis Data Firehose for deserializing data, which means converting it from the JSON format in preparation for serializing it to the Parquet or ORC format. This is one of two deserializers you can choose, depending on which one offers the functionality you need. The other option is the native Hive / HCatalog JsonSerDe.