MysqlTableArgs

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

MySQL table.

Constructors

Link copied to clipboard
constructor(mysqlColumns: Output<List<MysqlColumnArgs>>? = null, table: Output<String>? = null)

Properties

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

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

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

Table name.

Functions

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