StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableMysqlColumn

data class StreamSourceConfigMysqlSourceConfigExcludeObjectsMysqlDatabaseMysqlTableMysqlColumn(val collation: String? = null, val column: String? = null, val dataType: String? = null, val length: Int? = null, val nullable: Boolean? = null, val ordinalPosition: Int? = null, val primaryKey: Boolean? = null)

Constructors

constructor(collation: String? = null, column: String? = null, dataType: String? = null, length: Int? = null, nullable: Boolean? = null, ordinalPosition: Int? = null, primaryKey: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val collation: String? = null

Column collation.

Link copied to clipboard
val column: String? = null

Column name.

Link copied to clipboard
val dataType: String? = null

The MySQL data type. Full data types list can be found here: https://dev.mysql.com/doc/refman/8.0/en/data-types.html

Link copied to clipboard
val length: Int? = null

(Output) Column length.

Link copied to clipboard
val nullable: Boolean? = null

Whether or not the column can accept a null value.

Link copied to clipboard
val ordinalPosition: Int? = null

The ordinal position of the column in the table.

Link copied to clipboard
val primaryKey: Boolean? = null

Whether or not the column represents a primary key.