public static interface CfnApplicationReferenceDataSource.RecordFormatProperty
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.*; 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 java.lang.Object |
getMappingParameters()
When configuring 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.
|
java.lang.String |
getRecordFormatType()
The type of record format.
|
java.lang.String getRecordFormatType()
default java.lang.Object getMappingParameters()