Interface Serializer.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Serializer.Builder,Serializer>,SdkBuilder<Serializer.Builder,Serializer>,SdkPojo
- Enclosing class:
- Serializer
public static interface Serializer.Builder extends SdkPojo, CopyableBuilder<Serializer.Builder,Serializer>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Serializer.BuilderorcSerDe(Consumer<OrcSerDe.Builder> orcSerDe)A serializer to use for converting data to the ORC format before storing it in Amazon S3.Serializer.BuilderorcSerDe(OrcSerDe orcSerDe)A serializer to use for converting data to the ORC format before storing it in Amazon S3.default Serializer.BuilderparquetSerDe(Consumer<ParquetSerDe.Builder> parquetSerDe)A serializer to use for converting data to the Parquet format before storing it in Amazon S3.Serializer.BuilderparquetSerDe(ParquetSerDe parquetSerDe)A serializer to use for converting data to the Parquet format before storing it in Amazon S3.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
parquetSerDe
Serializer.Builder parquetSerDe(ParquetSerDe parquetSerDe)
A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see Apache Parquet.
- Parameters:
parquetSerDe- A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see Apache Parquet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parquetSerDe
default Serializer.Builder parquetSerDe(Consumer<ParquetSerDe.Builder> parquetSerDe)
A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see Apache Parquet.
This is a convenience method that creates an instance of theParquetSerDe.Builderavoiding the need to create one manually viaParquetSerDe.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toparquetSerDe(ParquetSerDe).- Parameters:
parquetSerDe- a consumer that will call methods onParquetSerDe.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
parquetSerDe(ParquetSerDe)
-
orcSerDe
Serializer.Builder orcSerDe(OrcSerDe orcSerDe)
A serializer to use for converting data to the ORC format before storing it in Amazon S3. For more information, see Apache ORC.
- Parameters:
orcSerDe- A serializer to use for converting data to the ORC format before storing it in Amazon S3. For more information, see Apache ORC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orcSerDe
default Serializer.Builder orcSerDe(Consumer<OrcSerDe.Builder> orcSerDe)
A serializer to use for converting data to the ORC format before storing it in Amazon S3. For more information, see Apache ORC.
This is a convenience method that creates an instance of theOrcSerDe.Builderavoiding the need to create one manually viaOrcSerDe.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toorcSerDe(OrcSerDe).- Parameters:
orcSerDe- a consumer that will call methods onOrcSerDe.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
orcSerDe(OrcSerDe)
-
-