@Stability(value=Stable)
public static interface CfnDataset.CsvOptionsProperty
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.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 String |
getDelimiter()
A single character that specifies the delimiter being used in the CSV file.
|
default Object |
getHeaderRow()
A variable that specifies whether the first row in the file is parsed as the header.
|
@Stability(value=Stable) @Nullable default String getDelimiter()
@Stability(value=Stable) @Nullable default Object getHeaderRow()
If this value is false, column names are auto-generated.
@Stability(value=Stable) static CfnDataset.CsvOptionsProperty.Builder builder()
Copyright © 2022. All rights reserved.