MysqlTableArgs

data class MysqlTableArgs(val mysqlColumns: Output<List<MysqlColumnArgs>>? = null, val tableName: Output<String>? = null) : ConvertibleToJava<MysqlTableArgs>

MySQL table.

Constructors

Link copied to clipboard
fun MysqlTableArgs(mysqlColumns: Output<List<MysqlColumnArgs>>? = null, tableName: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard
val mysqlColumns: Output<List<MysqlColumnArgs>>? = null

MySQL columns in the database. When unspecified as part of include/exclude lists, includes/excludes everything.

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

Table name.