Class: Aws::Firehose::Types::Deserializer
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::Deserializer
- Defined in:
- gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#hive_json_ser_de ⇒ Types::HiveJsonSerDe
The native Hive / HCatalog JsonSerDe.
-
#open_x_json_ser_de ⇒ Types::OpenXJsonSerDe
The OpenX SerDe.
Instance Attribute Details
#hive_json_ser_de ⇒ Types::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.
1199 1200 1201 1202 1203 1204 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 1199 class Deserializer < Struct.new( :open_x_json_ser_de, :hive_json_ser_de) SENSITIVE = [] include Aws::Structure end |
#open_x_json_ser_de ⇒ Types::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.
1199 1200 1201 1202 1203 1204 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 1199 class Deserializer < Struct.new( :open_x_json_ser_de, :hive_json_ser_de) SENSITIVE = [] include Aws::Structure end |