public static interface CfnClassifier.CsvClassifierProperty
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 java.lang.Object |
getAllowSingleColumn()
Enables the processing of files that contain only one column.
|
default java.lang.String |
getContainsHeader()
Indicates whether the CSV file contains a header.
|
default java.lang.String |
getDelimiter()
A custom symbol to denote what separates each column entry in the row.
|
default java.lang.Object |
getDisableValueTrimming()
Specifies not to trim values before identifying the type of column values.
|
default java.util.List<java.lang.String> |
getHeader()
A list of strings representing column names.
|
default java.lang.String |
getName()
The name of the classifier.
|
default java.lang.String |
getQuoteSymbol()
A custom symbol to denote what combines content into a single column value.
|
default java.lang.Object getAllowSingleColumn()
default java.lang.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.
default java.lang.String getDelimiter()
default java.lang.Object getDisableValueTrimming()
The default value is true
.
default java.util.List<java.lang.String> getHeader()
default java.lang.String getName()
default java.lang.String getQuoteSymbol()
It must be different from the column delimiter.
static CfnClassifier.CsvClassifierProperty.Builder builder()