Interface CfnApplicationReferenceDataSourcePropsMixin.CSVMappingParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationReferenceDataSourcePropsMixin.CSVMappingParametersProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationReferenceDataSourcePropsMixin
@Stability(Stable)
public static interface CfnApplicationReferenceDataSourcePropsMixin.CSVMappingParametersProperty
extends software.amazon.jsii.JsiiSerializable
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.cfnpropertymixins.services.kinesisanalytics.*;
CSVMappingParametersProperty cSVMappingParametersProperty = CSVMappingParametersProperty.builder()
.recordColumnDelimiter("recordColumnDelimiter")
.recordRowDelimiter("recordRowDelimiter")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnApplicationReferenceDataSourcePropsMixin.CSVMappingParametersProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRecordColumnDelimiter
Column delimiter.For example, in a CSV format, a comma (",") is the typical column delimiter.
- See Also:
-
getRecordRowDelimiter
Row delimiter.For example, in a CSV format, '\n' is the typical row delimiter.
- See Also:
-
builder
@Stability(Stable) static CfnApplicationReferenceDataSourcePropsMixin.CSVMappingParametersProperty.Builder builder()
-