@Stability(value=Stable)
public static interface CfnApplication.InputSchemaProperty
extends software.amazon.jsii.JsiiSerializable
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.kinesisanalyticsv2.*;
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() |
Object |
getRecordColumns()
A list of `RecordColumn` objects.
|
default String |
getRecordEncoding()
Specifies the encoding of the records in the streaming source.
|
Object |
getRecordFormat()
Specifies the format of the records on the streaming source.
|
@Stability(value=Stable) @NotNull Object getRecordColumns()
@Stability(value=Stable) @NotNull Object getRecordFormat()
@Stability(value=Stable) @Nullable default String getRecordEncoding()
For example, UTF-8.
@Stability(value=Stable) static CfnApplication.InputSchemaProperty.Builder builder()
Copyright © 2022. All rights reserved.