ApplicationRecordColumnArgs

data class ApplicationRecordColumnArgs(val mapping: Output<String>? = null, val name: Output<String>, val sqlType: Output<String>) : ConvertibleToJava<ApplicationRecordColumnArgs>

For a SQL-based Kinesis Data Analytics application, describes the mapping of each data element in the streaming source to the corresponding column in the in-application stream. Also used to describe the format of the reference data source.

Constructors

Link copied to clipboard
constructor(mapping: Output<String>? = null, name: Output<String>, sqlType: Output<String>)

Properties

Link copied to clipboard
val mapping: Output<String>? = null

A reference to the data element in the streaming input or the reference data source.

Link copied to clipboard
val name: Output<String>

The name of the column that is created in the in-application input stream or reference table.

Link copied to clipboard
val sqlType: Output<String>

The type of column created in the in-application input stream or reference table.

Functions

Link copied to clipboard
open override fun toJava(): ApplicationRecordColumnArgs