Interface DelimitedTextImportOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DelimitedTextImportOptions.Builder,DelimitedTextImportOptions>,SdkBuilder<DelimitedTextImportOptions.Builder,DelimitedTextImportOptions>,SdkPojo
- Enclosing class:
- DelimitedTextImportOptions
public static interface DelimitedTextImportOptions.Builder extends SdkPojo, CopyableBuilder<DelimitedTextImportOptions.Builder,DelimitedTextImportOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DelimitedTextImportOptions.BuilderdataCharacterEncoding(String dataCharacterEncoding)The encoding of the data in the input file.DelimitedTextImportOptions.BuilderdataCharacterEncoding(ImportDataCharacterEncoding dataCharacterEncoding)The encoding of the data in the input file.DelimitedTextImportOptions.Builderdelimiter(String delimiter)The delimiter to use for separating columns in a single row of the input.DelimitedTextImportOptions.BuilderhasHeaderRow(Boolean hasHeaderRow)Indicates whether the input file has a header row at the top containing the column names.DelimitedTextImportOptions.BuilderignoreEmptyRows(Boolean ignoreEmptyRows)A parameter to indicate whether empty rows should be ignored or be included in the import.-
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
DelimitedTextImportOptions.Builder delimiter(String delimiter)
The delimiter to use for separating columns in a single row of the input.
- Parameters:
delimiter- The delimiter to use for separating columns in a single row of the input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hasHeaderRow
DelimitedTextImportOptions.Builder hasHeaderRow(Boolean hasHeaderRow)
Indicates whether the input file has a header row at the top containing the column names.
- Parameters:
hasHeaderRow- Indicates whether the input file has a header row at the top containing the column names.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ignoreEmptyRows
DelimitedTextImportOptions.Builder ignoreEmptyRows(Boolean ignoreEmptyRows)
A parameter to indicate whether empty rows should be ignored or be included in the import.
- Parameters:
ignoreEmptyRows- A parameter to indicate whether empty rows should be ignored or be included in the import.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataCharacterEncoding
DelimitedTextImportOptions.Builder dataCharacterEncoding(String dataCharacterEncoding)
The encoding of the data in the input file.
- Parameters:
dataCharacterEncoding- The encoding of the data in the input file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImportDataCharacterEncoding,ImportDataCharacterEncoding
-
dataCharacterEncoding
DelimitedTextImportOptions.Builder dataCharacterEncoding(ImportDataCharacterEncoding dataCharacterEncoding)
The encoding of the data in the input file.
- Parameters:
dataCharacterEncoding- The encoding of the data in the input file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImportDataCharacterEncoding,ImportDataCharacterEncoding
-
-