Databricks SDK for JavaScript
    Preparing search index...

    A Lakebase CDF configuration (CdfConfig): one per Postgres schema per database, replicating that schema's tables into a Unity Catalog schema. Immutable once created.

    interface CdfConfig {
        catalog?: string;
        cdfConfigId?: string;
        createTime?: Instant;
        name?: string;
        postgresSchema?: string;
        schema?: string;
    }
    Index

    Properties

    catalog?: string

    The Unity Catalog catalog that replicated tables are written into. Set at creation; the CdfConfig is immutable.

    cdfConfigId?: string

    The user-specified id; equals the final segment of name. Defaults to the Postgres schema name for configs without an explicit id.

    createTime?: Instant

    When the CdfConfig was created.

    name?: string

    Output only. The full resource name of the CdfConfig. Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}

    postgresSchema?: string

    The Postgres schema this CdfConfig replicates from. Unique within the parent database. Set at creation; the CdfConfig is immutable.

    schema?: string

    The Unity Catalog schema that replicated tables are written into. Set at creation; the CdfConfig is immutable.