@Stability(value=Stable)
public static interface CfnApplicationReferenceDataSourceV2.MappingParametersProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
MappingParametersProperty mappingParametersProperty = MappingParametersProperty.builder()
.csvMappingParameters(CSVMappingParametersProperty.builder()
.recordColumnDelimiter("recordColumnDelimiter")
.recordRowDelimiter("recordRowDelimiter")
.build())
.jsonMappingParameters(JSONMappingParametersProperty.builder()
.recordRowPath("recordRowPath")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationReferenceDataSourceV2.MappingParametersProperty.Builder
|
static class |
CfnApplicationReferenceDataSourceV2.MappingParametersProperty.Jsii$Proxy
An implementation for
CfnApplicationReferenceDataSourceV2.MappingParametersProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationReferenceDataSourceV2.MappingParametersProperty.Builder |
builder() |
default Object |
getCsvMappingParameters()
Provides additional mapping information when the record format uses delimiters (for example, CSV).
|
default Object |
getJsonMappingParameters()
Provides additional mapping information when JSON is the record format on the streaming source.
|
@Stability(value=Stable) @Nullable default Object getCsvMappingParameters()
@Stability(value=Stable) @Nullable default Object getJsonMappingParameters()
@Stability(value=Stable) static CfnApplicationReferenceDataSourceV2.MappingParametersProperty.Builder builder()
Copyright © 2022. All rights reserved.