public static interface CfnApplicationReferenceDataSource.ReferenceSchemaProperty
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.*; ReferenceSchemaProperty referenceSchemaProperty = ReferenceSchemaProperty.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 |
CfnApplicationReferenceDataSource.ReferenceSchemaProperty.Builder
|
static class |
CfnApplicationReferenceDataSource.ReferenceSchemaProperty.Jsii$Proxy
An implementation for
CfnApplicationReferenceDataSource.ReferenceSchemaProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplicationReferenceDataSource.ReferenceSchemaProperty.Builder |
builder() |
java.lang.Object |
getRecordColumns()
A list of RecordColumn objects.
|
default java.lang.String |
getRecordEncoding()
Specifies the encoding of the records in the reference source.
|
java.lang.Object |
getRecordFormat()
Specifies the format of the records on the reference source.
|
java.lang.Object getRecordColumns()
java.lang.Object getRecordFormat()
default java.lang.String getRecordEncoding()
For example, UTF-8.