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.Builderdelimiter(String delimiter)A single character that specifies the delimiter being used in the CSV file.CsvOptions.BuilderheaderRow(Boolean headerRow)A variable that specifies whether the first row in the file is parsed as the header.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
delimiter
CsvOptions.Builder delimiter(String delimiter)
A single character that specifies the delimiter being used in the CSV file.
- Parameters:
delimiter- A single character that specifies the delimiter being used in the CSV file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
headerRow
CsvOptions.Builder headerRow(Boolean headerRow)
A variable that specifies whether the first row in the file is parsed as the header. If this value is false, column names are auto-generated.
- Parameters:
headerRow- A variable that specifies whether the first row in the file is parsed as the header. If this value is false, column names are auto-generated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-