Class Deserializer
- java.lang.Object
-
- software.amazon.awssdk.services.firehose.model.Deserializer
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<Deserializer.Builder,Deserializer>
@Generated("software.amazon.awssdk:codegen") public final class Deserializer extends Object implements SdkPojo, Serializable, ToCopyableBuilder<Deserializer.Builder,Deserializer>
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.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceDeserializer.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Deserializer.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()HiveJsonSerDehiveJsonSerDe()The native Hive / HCatalog JsonSerDe.OpenXJsonSerDeopenXJsonSerDe()The OpenX SerDe.List<SdkField<?>>sdkFields()static Class<? extends Deserializer.Builder>serializableBuilderClass()Deserializer.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
openXJsonSerDe
public final 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.
- Returns:
- 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.
-
hiveJsonSerDe
public final 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.
- Returns:
- 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.
-
toBuilder
public Deserializer.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<Deserializer.Builder,Deserializer>
-
builder
public static Deserializer.Builder builder()
-
serializableBuilderClass
public static Class<? extends Deserializer.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-