# The CdfConfig object

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

## Attributes

- `name` (string, Beta)
  Output only. The full resource name of the CdfConfig.
   Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
- `catalog` (string, Beta)
  The Unity Catalog catalog that replicated tables are written into.
   Set at creation; the CdfConfig is immutable.
- `schema` (string, Beta)
  The Unity Catalog schema that replicated tables are written into.
   Set at creation; the CdfConfig is immutable.
- `create_time` (string, Beta)
  When the CdfConfig was created.
- `cdf_config_id` (string, Beta)
  The user-specified id; equals the final segment of `name`. Defaults to the
   Postgres schema name for configs without an explicit id.
- `postgres_schema` (string, Beta)
  The Postgres schema this CdfConfig replicates from. Unique within the
   parent database. Set at creation; the CdfConfig is immutable.

## Example

```json
{
  "name": "string",
  "catalog": "string",
  "schema": "string",
  "create_time": "string",
  "cdf_config_id": "string",
  "postgres_schema": "string"
}
```


