Stream Source Config Postgresql Source Config
data class StreamSourceConfigPostgresqlSourceConfig(val excludeObjects: StreamSourceConfigPostgresqlSourceConfigExcludeObjects? = null, val includeObjects: StreamSourceConfigPostgresqlSourceConfigIncludeObjects? = null, val maxConcurrentBackfillTasks: Int? = null, val publication: String, val replicationSlot: String)
Constructors
Link copied to clipboard
constructor(excludeObjects: StreamSourceConfigPostgresqlSourceConfigExcludeObjects? = null, includeObjects: StreamSourceConfigPostgresqlSourceConfigIncludeObjects? = null, maxConcurrentBackfillTasks: Int? = null, publication: String, replicationSlot: String)
Properties
Link copied to clipboard
PostgreSQL objects to exclude from the stream. Structure is documented below.
Link copied to clipboard
PostgreSQL objects to retrieve from the source. Structure is documented below.
Link copied to clipboard
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
The name of the publication that includes the set of all tables that are defined in the stream's include_objects.
Link copied to clipboard
The name of the logical replication slot that's configured with the pgoutput plugin.