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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CsvOptions.Builder
delimiter(String delimiter)
The delimiter used for separating items in the CSV file being imported.CsvOptions.Builder
headerList(String... headerList)
List of the headers used to specify a common header for all source CSV files being imported.CsvOptions.Builder
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 Detail
-
delimiter
CsvOptions.Builder delimiter(String 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
CsvOptions.Builder headerList(Collection<String> 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
CsvOptions.Builder headerList(String... 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.
-
-