MysqlSourceConfigArgs

data class MysqlSourceConfigArgs(val excludeObjects: Output<MysqlRdbmsArgs>? = null, val includeObjects: Output<MysqlRdbmsArgs>? = null, val maxConcurrentBackfillTasks: Output<Int>? = null, val maxConcurrentCdcTasks: Output<Int>? = null) : ConvertibleToJava<MysqlSourceConfigArgs>

MySQL source configuration

Constructors

Link copied to clipboard
fun MysqlSourceConfigArgs(excludeObjects: Output<MysqlRdbmsArgs>? = null, includeObjects: Output<MysqlRdbmsArgs>? = null, maxConcurrentBackfillTasks: Output<Int>? = null, maxConcurrentCdcTasks: Output<Int>? = null)

Functions

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

Properties

Link copied to clipboard
val excludeObjects: Output<MysqlRdbmsArgs>? = null

MySQL objects to exclude from the stream.

Link copied to clipboard
val includeObjects: Output<MysqlRdbmsArgs>? = null

MySQL objects to retrieve from the source.

Link copied to clipboard
val maxConcurrentBackfillTasks: Output<Int>? = null

Maximum number of concurrent backfill tasks. The number should be non negative. If not set (or set to 0), the system's default value will be used.

Link copied to clipboard
val maxConcurrentCdcTasks: Output<Int>? = null

Maximum number of concurrent CDC tasks. The number should be non negative. If not set (or set to 0), the system's default value will be used.