@Stability(value=Stable)
public static interface CfnDataset.FormatOptionsProperty
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.*;
FormatOptionsProperty formatOptionsProperty = FormatOptionsProperty.builder()
.csv(CsvOptionsProperty.builder()
.delimiter("delimiter")
.headerRow(false)
.build())
.excel(ExcelOptionsProperty.builder()
.headerRow(false)
.sheetIndexes(List.of(123))
.sheetNames(List.of("sheetNames"))
.build())
.json(JsonOptionsProperty.builder()
.multiLine(false)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataset.FormatOptionsProperty.Builder
A builder for
CfnDataset.FormatOptionsProperty |
static class |
CfnDataset.FormatOptionsProperty.Jsii$Proxy
An implementation for
CfnDataset.FormatOptionsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataset.FormatOptionsProperty.Builder |
builder() |
default Object |
getCsv()
Options that define how CSV input is to be interpreted by DataBrew.
|
default Object |
getExcel()
Options that define how Excel input is to be interpreted by DataBrew.
|
default Object |
getJson()
Options that define how JSON input is to be interpreted by DataBrew.
|
@Stability(value=Stable) @Nullable default Object getCsv()
@Stability(value=Stable) @Nullable default Object getExcel()
@Stability(value=Stable) @Nullable default Object getJson()
@Stability(value=Stable) static CfnDataset.FormatOptionsProperty.Builder builder()
Copyright © 2022. All rights reserved.