Interface InputSerialization.Builder
- All Superinterfaces:
 Buildable,CopyableBuilder<InputSerialization.Builder,,InputSerialization> SdkBuilder<InputSerialization.Builder,,InputSerialization> SdkPojo
- Enclosing class:
 InputSerialization
- 
Method Summary
Modifier and TypeMethodDescriptioncompressionType(String compressionType) Specifies object's compression format.compressionType(CompressionType compressionType) Specifies object's compression format.default InputSerialization.Buildercsv(Consumer<CSVInput.Builder> csv) Describes the serialization of a CSV-encoded object.Describes the serialization of a CSV-encoded object.default InputSerialization.Builderjson(Consumer<JSONInput.Builder> json) Specifies JSON as object's input serialization format.Specifies JSON as object's input serialization format.default InputSerialization.Builderparquet(Consumer<ParquetInput.Builder> parquet) Specifies Parquet as object's input serialization format.parquet(ParquetInput parquet) Specifies Parquet as object's input serialization format.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields 
- 
Method Details
- 
csv
Describes the serialization of a CSV-encoded object.
- Parameters:
 csv- Describes the serialization of a CSV-encoded object.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
csv
Describes the serialization of a CSV-encoded object.
This is a convenience method that creates an instance of theCSVInput.Builderavoiding the need to create one manually viaCSVInput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocsv(CSVInput).- Parameters:
 csv- a consumer that will call methods onCSVInput.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 - 
compressionType
Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value: NONE.
- Parameters:
 compressionType- Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value: NONE.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 - 
compressionType
Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value: NONE.
- Parameters:
 compressionType- Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value: NONE.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 - 
json
Specifies JSON as object's input serialization format.
- Parameters:
 json- Specifies JSON as object's input serialization format.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
json
Specifies JSON as object's input serialization format.
This is a convenience method that creates an instance of theJSONInput.Builderavoiding the need to create one manually viaJSONInput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tojson(JSONInput).- Parameters:
 json- a consumer that will call methods onJSONInput.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 - 
parquet
Specifies Parquet as object's input serialization format.
- Parameters:
 parquet- Specifies Parquet as object's input serialization format.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
parquet
Specifies Parquet as object's input serialization format.
This is a convenience method that creates an instance of theParquetInput.Builderavoiding the need to create one manually viaParquetInput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toparquet(ParquetInput).- Parameters:
 parquet- a consumer that will call methods onParquetInput.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 
 -