Interface FileFormat.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<FileFormat.Builder,
,FileFormat> SdkBuilder<FileFormat.Builder,
,FileFormat> SdkPojo
- Enclosing class:
FileFormat
public static interface FileFormat.Builder
extends SdkPojo, CopyableBuilder<FileFormat.Builder,FileFormat>
-
Method Summary
Modifier and TypeMethodDescriptiondefault FileFormat.Builder
csv
(Consumer<Csv.Builder> csv) The .csv file format.The .csv file format.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 Details
-
csv
The .csv file format.
- Parameters:
csv
- The .csv file format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
csv
The .csv file format.
This is a convenience method that creates an instance of theCsv.Builder
avoiding the need to create one manually viaCsv.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocsv(Csv)
.- Parameters:
csv
- a consumer that will call methods onCsv.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-