Deserializer
public struct Deserializer : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
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.
Declaration
Swift
public let hiveJsonSerDe: HiveJsonSerDe?
-
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.
Declaration
Swift
public let openXJsonSerDe: OpenXJsonSerDe?
-
Undocumented
Declaration
Swift
public init(hiveJsonSerDe: HiveJsonSerDe? = nil, openXJsonSerDe: OpenXJsonSerDe? = nil)
-
Declaration
Swift
public func validate(name: String) throws