Interface CsvOptions.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<CsvOptions.Builder,
,CsvOptions> SdkBuilder<CsvOptions.Builder,
,CsvOptions> SdkPojo
- Enclosing class:
CsvOptions
public static interface CsvOptions.Builder
extends SdkPojo, CopyableBuilder<CsvOptions.Builder,CsvOptions>
-
Method Summary
Modifier and TypeMethodDescriptionThe delimiter used for separating items in the CSV file being imported.headerList
(String... headerList) List of the headers used to specify a common header for all source CSV files being imported.headerList
(Collection<String> headerList) List of the headers used to specify a common header for all source CSV files being imported.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
-
delimiter
The delimiter used for separating items in the CSV file being imported.
- Parameters:
delimiter
- The delimiter used for separating items in the CSV file being imported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
headerList
List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.
- Parameters:
headerList
- List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
headerList
List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.
- Parameters:
headerList
- List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-