public static interface Deserializer.Builder extends SdkPojo, CopyableBuilder<Deserializer.Builder,Deserializer>
Modifier and Type | Method and Description |
---|---|
default Deserializer.Builder |
hiveJsonSerDe(Consumer<HiveJsonSerDe.Builder> hiveJsonSerDe)
The native Hive / HCatalog JsonSerDe.
|
Deserializer.Builder |
hiveJsonSerDe(HiveJsonSerDe hiveJsonSerDe)
The native Hive / HCatalog JsonSerDe.
|
default Deserializer.Builder |
openXJsonSerDe(Consumer<OpenXJsonSerDe.Builder> openXJsonSerDe)
The OpenX SerDe.
|
Deserializer.Builder |
openXJsonSerDe(OpenXJsonSerDe openXJsonSerDe)
The OpenX SerDe.
|
copy
applyMutation, build
Deserializer.Builder openXJsonSerDe(OpenXJsonSerDe 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.
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.default Deserializer.Builder openXJsonSerDe(Consumer<OpenXJsonSerDe.Builder> 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.
This is a convenience that creates an instance of theOpenXJsonSerDe.Builder
avoiding the need to
create one manually via OpenXJsonSerDe.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to openXJsonSerDe(OpenXJsonSerDe)
.openXJsonSerDe
- a consumer that will call methods on OpenXJsonSerDe.Builder
openXJsonSerDe(OpenXJsonSerDe)
Deserializer.Builder hiveJsonSerDe(HiveJsonSerDe 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.
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.default Deserializer.Builder hiveJsonSerDe(Consumer<HiveJsonSerDe.Builder> 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.
This is a convenience that creates an instance of theHiveJsonSerDe.Builder
avoiding the need to
create one manually via HiveJsonSerDe.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to hiveJsonSerDe(HiveJsonSerDe)
.hiveJsonSerDe
- a consumer that will call methods on HiveJsonSerDe.Builder
hiveJsonSerDe(HiveJsonSerDe)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.