public static interface CfnDataset.CsvOptionsProperty
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.databrew.*; CsvOptionsProperty csvOptionsProperty = CsvOptionsProperty.builder() .delimiter("delimiter") .headerRow(false) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataset.CsvOptionsProperty.Builder
A builder for
CfnDataset.CsvOptionsProperty |
static class |
CfnDataset.CsvOptionsProperty.Jsii$Proxy
An implementation for
CfnDataset.CsvOptionsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataset.CsvOptionsProperty.Builder |
builder() |
default java.lang.String |
getDelimiter()
A single character that specifies the delimiter being used in the CSV file.
|
default java.lang.Object |
getHeaderRow()
A variable that specifies whether the first row in the file is parsed as the header.
|
default java.lang.String getDelimiter()
default java.lang.Object getHeaderRow()
If this value is false, column names are auto-generated.
static CfnDataset.CsvOptionsProperty.Builder builder()