Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PostgresqlSourceConfig

import type { PostgresqlSourceConfig } from "https://googleapis.deno.dev/v1/datastream:v1.ts";

PostgreSQL data source configuration

interface PostgresqlSourceConfig {
excludeObjects?: PostgresqlRdbms;
includeObjects?: PostgresqlRdbms;
maxConcurrentBackfillTasks?: number;
publication?: string;
replicationSlot?: string;
}

§Properties

§
excludeObjects?: PostgresqlRdbms
[src]

PostgreSQL objects to exclude from the stream.

§
includeObjects?: PostgresqlRdbms
[src]

PostgreSQL objects to include in the stream.

§
maxConcurrentBackfillTasks?: number
[src]

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.

§
publication?: string
[src]

Required. The name of the publication that includes the set of all tables that are defined in the stream's include_objects.

§
replicationSlot?: string
[src]

Required. Immutable. The name of the logical replication slot that's configured with the pgoutput plugin.