public static interface CfnApplication.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 |
CfnApplication.RecordFormatProperty.Builder
A builder for
CfnApplication.RecordFormatProperty |
static class |
CfnApplication.RecordFormatProperty.Jsii$Proxy
An implementation for
CfnApplication.RecordFormatProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplication.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()
static CfnApplication.RecordFormatProperty.Builder builder()