public static interface CfnApplication.InputSchemaProperty
Also used to describe the format of the reference data source.
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.*; InputSchemaProperty inputSchemaProperty = InputSchemaProperty.builder() .recordColumns(List.of(RecordColumnProperty.builder() .name("name") .sqlType("sqlType") // the properties below are optional .mapping("mapping") .build())) .recordFormat(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()) // the properties below are optional .recordEncoding("recordEncoding") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplication.InputSchemaProperty.Builder
A builder for
CfnApplication.InputSchemaProperty |
static class |
CfnApplication.InputSchemaProperty.Jsii$Proxy
An implementation for
CfnApplication.InputSchemaProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplication.InputSchemaProperty.Builder |
builder() |
java.lang.Object |
getRecordColumns()
A list of `RecordColumn` objects.
|
default java.lang.String |
getRecordEncoding()
Specifies the encoding of the records in the streaming source.
|
java.lang.Object |
getRecordFormat()
Specifies the format of the records on the streaming source.
|
java.lang.Object getRecordColumns()
java.lang.Object getRecordFormat()
default java.lang.String getRecordEncoding()
For example, UTF-8.
static CfnApplication.InputSchemaProperty.Builder builder()