@Stability(value=Stable)
public static interface CfnClassifier.CsvClassifierProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.glue.*;
CsvClassifierProperty csvClassifierProperty = CsvClassifierProperty.builder()
.allowSingleColumn(false)
.containsHeader("containsHeader")
.delimiter("delimiter")
.disableValueTrimming(false)
.header(List.of("header"))
.name("name")
.quoteSymbol("quoteSymbol")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnClassifier.CsvClassifierProperty.Builder
A builder for
CfnClassifier.CsvClassifierProperty |
static class |
CfnClassifier.CsvClassifierProperty.Jsii$Proxy
An implementation for
CfnClassifier.CsvClassifierProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnClassifier.CsvClassifierProperty.Builder |
builder() |
default Object |
getAllowSingleColumn()
Enables the processing of files that contain only one column.
|
default String |
getContainsHeader()
Indicates whether the CSV file contains a header.
|
default String |
getDelimiter()
A custom symbol to denote what separates each column entry in the row.
|
default Object |
getDisableValueTrimming()
Specifies not to trim values before identifying the type of column values.
|
default List<String> |
getHeader()
A list of strings representing column names.
|
default String |
getName()
The name of the classifier.
|
default String |
getQuoteSymbol()
A custom symbol to denote what combines content into a single column value.
|
@Stability(value=Stable) @Nullable default Object getAllowSingleColumn()
@Stability(value=Stable) @Nullable default String getContainsHeader()
A value of UNKNOWN specifies that the classifier will detect whether the CSV file contains headings.
A value of PRESENT specifies that the CSV file contains headings.
A value of ABSENT specifies that the CSV file does not contain headings.
@Stability(value=Stable) @Nullable default String getDelimiter()
@Stability(value=Stable) @Nullable default Object getDisableValueTrimming()
The default value is true .
@Stability(value=Stable) @Nullable default List<String> getHeader()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default String getQuoteSymbol()
It must be different from the column delimiter.
@Stability(value=Stable) static CfnClassifier.CsvClassifierProperty.Builder builder()
Copyright © 2022. All rights reserved.