AWSFirehoseDeserializer

Objective-C

@interface AWSFirehoseDeserializer

Swift

class AWSFirehoseDeserializer

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

  • The native Hive / HCatalog JsonSerDe. Used by 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSFirehoseHiveJsonSerDe *_Nullable hiveJsonSerDe;

    Swift

    var hiveJsonSerDe: AWSFirehoseHiveJsonSerDe? { get set }
  • The OpenX SerDe. Used by 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSFirehoseOpenXJsonSerDe *_Nullable openXJsonSerDe;

    Swift

    var openXJsonSerDe: AWSFirehoseOpenXJsonSerDe? { get set }