@Stability(value=Stable)
public static interface CfnApplicationReferenceDataSource.CSVMappingParametersProperty
extends software.amazon.jsii.JsiiSerializable
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.kinesisanalytics.*;
CSVMappingParametersProperty cSVMappingParametersProperty = CSVMappingParametersProperty.builder()
.recordColumnDelimiter("recordColumnDelimiter")
.recordRowDelimiter("recordRowDelimiter")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationReferenceDataSource.CSVMappingParametersProperty.Builder
|
static class |
CfnApplicationReferenceDataSource.CSVMappingParametersProperty.Jsii$Proxy
An implementation for
CfnApplicationReferenceDataSource.CSVMappingParametersProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationReferenceDataSource.CSVMappingParametersProperty.Builder |
builder() |
String |
getRecordColumnDelimiter()
Column delimiter.
|
String |
getRecordRowDelimiter()
Row delimiter.
|
@Stability(value=Stable) @NotNull String getRecordColumnDelimiter()
For example, in a CSV format, a comma (",") is the typical column delimiter.
@Stability(value=Stable) @NotNull String getRecordRowDelimiter()
For example, in a CSV format, '\n' is the typical row delimiter.
@Stability(value=Stable) static CfnApplicationReferenceDataSource.CSVMappingParametersProperty.Builder builder()
Copyright © 2022. All rights reserved.