@Stability(value=Stable)
public static interface CfnApplicationReferenceDataSource.RecordFormatProperty
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.kinesisanalyticsv2.*;
RecordFormatProperty recordFormatProperty = RecordFormatProperty.builder()
.recordFormatType("recordFormatType")
// the properties below are optional
.mappingParameters(MappingParametersProperty.builder()
.csvMappingParameters(CSVMappingParametersProperty.builder()
.recordColumnDelimiter("recordColumnDelimiter")
.recordRowDelimiter("recordRowDelimiter")
.build())
.jsonMappingParameters(JSONMappingParametersProperty.builder()
.recordRowPath("recordRowPath")
.build())
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationReferenceDataSource.RecordFormatProperty.Builder
A builder for
CfnApplicationReferenceDataSource.RecordFormatProperty |
static class |
CfnApplicationReferenceDataSource.RecordFormatProperty.Jsii$Proxy
An implementation for
CfnApplicationReferenceDataSource.RecordFormatProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationReferenceDataSource.RecordFormatProperty.Builder |
builder() |
default Object |
getMappingParameters()
When you configure application input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.
|
String |
getRecordFormatType()
The type of record format.
|
@Stability(value=Stable) @NotNull String getRecordFormatType()
@Stability(value=Stable) @Nullable default Object getMappingParameters()
@Stability(value=Stable) static CfnApplicationReferenceDataSource.RecordFormatProperty.Builder builder()
Copyright © 2022. All rights reserved.