Interface CsvConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<CsvConfiguration.Builder,
,CsvConfiguration> SdkBuilder<CsvConfiguration.Builder,
,CsvConfiguration> SdkPojo
- Enclosing class:
CsvConfiguration
public static interface CsvConfiguration.Builder
extends SdkPojo, CopyableBuilder<CsvConfiguration.Builder,CsvConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptioncolumnSeparator
(String columnSeparator) Column separator can be one of comma (','), pipe ('|), semicolon (';'), tab('/t'), or blank space (' ').escapeChar
(String escapeChar) Escape character can be one ofCan be blank space (' ').Can be single quote (') or double quote (").trimWhiteSpace
(Boolean trimWhiteSpace) Specifies to trim leading and trailing white space.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
-
columnSeparator
Column separator can be one of comma (','), pipe ('|), semicolon (';'), tab('/t'), or blank space (' ').
- Parameters:
columnSeparator
- Column separator can be one of comma (','), pipe ('|), semicolon (';'), tab('/t'), or blank space (' ').- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
escapeChar
Escape character can be one of
- Parameters:
escapeChar
- Escape character can be one of- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
quoteChar
Can be single quote (') or double quote (").
- Parameters:
quoteChar
- Can be single quote (') or double quote (").- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nullValue
Can be blank space (' ').
- Parameters:
nullValue
- Can be blank space (' ').- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trimWhiteSpace
Specifies to trim leading and trailing white space.
- Parameters:
trimWhiteSpace
- Specifies to trim leading and trailing white space.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-