Interface CfnTablePropsMixin.CsvProperty

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

@Stability(Stable) public static interface CfnTablePropsMixin.CsvProperty extends software.amazon.jsii.JsiiSerializable
The options for imported source files in CSV format.

The values are Delimiter and HeaderList.

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.dynamodb.*;
 CsvProperty csvProperty = CsvProperty.builder()
         .delimiter("delimiter")
         .headerList(List.of("headerList"))
         .build();
 

See Also: