public static interface CfnApplicationReferenceDataSourceV2.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 |
CfnApplicationReferenceDataSourceV2.RecordFormatProperty.Builder
A builder for
CfnApplicationReferenceDataSourceV2.RecordFormatProperty |
static class |
CfnApplicationReferenceDataSourceV2.RecordFormatProperty.Jsii$Proxy
An implementation for
CfnApplicationReferenceDataSourceV2.RecordFormatProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplicationReferenceDataSourceV2.RecordFormatProperty.Builder |
builder() |
default java.lang.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.
|
java.lang.String |
getRecordFormatType()
The type of record format.
|
java.lang.String getRecordFormatType()
default java.lang.Object getMappingParameters()