Interface CfnDatasetPropsMixin.CsvOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDatasetPropsMixin.CsvOptionsProperty.Jsii$Proxy
Enclosing class:
CfnDatasetPropsMixin

@Stability(Stable) public static interface CfnDatasetPropsMixin.CsvOptionsProperty extends software.amazon.jsii.JsiiSerializable
Represents a set of options that define how DataBrew will read a comma-separated value (CSV) file when creating a dataset from that file.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.databrew.*;
 CsvOptionsProperty csvOptionsProperty = CsvOptionsProperty.builder()
         .delimiter("delimiter")
         .headerRow(false)
         .build();
 

See Also: