Interface CfnApplicationReferenceDataSource.CSVMappingParametersProperty

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

@Stability(Stable) public static interface CfnApplicationReferenceDataSource.CSVMappingParametersProperty extends software.amazon.jsii.JsiiSerializable
For a SQL-based Kinesis Data Analytics application, provides additional mapping information when the record format uses delimiters, such as CSV.

For example, the following sample records use CSV format, where the records use the '\n' as the row delimiter and a comma (",") as the column delimiter:

"name1", "address1"

"name2", "address2"

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.kinesisanalyticsv2.*;
 CSVMappingParametersProperty cSVMappingParametersProperty = CSVMappingParametersProperty.builder()
         .recordColumnDelimiter("recordColumnDelimiter")
         .recordRowDelimiter("recordRowDelimiter")
         .build();
 

See Also: