You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Firehose::Types::Deserializer

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Deserializer as input to an Aws::Client method, you can use a vanilla Hash:

{
  open_x_json_ser_de: {
    convert_dots_in_json_keys_to_underscores: false,
    case_insensitive: false,
    column_to_json_key_mappings: {
      "NonEmptyStringWithoutWhitespace" => "NonEmptyString",
    },
  },
  hive_json_ser_de: {
    timestamp_formats: ["NonEmptyString"],
  },
}

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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#hive_json_ser_deTypes::HiveJsonSerDe

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.

Returns:

#open_x_json_ser_deTypes::OpenXJsonSerDe

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.

Returns: