# The CdfStatus object

The read-only replication status of a single Postgres table replicated
 under a CdfConfig. One status exists per replicated table.
 It is created automatically and cannot be modified.

## Attributes

- `name` (string, Beta)
  Output only. The full resource name of the CdfStatus.
   Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}/cdf-statuses/{cdf_status}
   The {cdf_status} segment is the Postgres table name.
- `postgres_table` (string, Beta)
  The Postgres table being replicated.
- `uc_table` (string, Beta)
  The Unity Catalog table receiving replicated data.
- `state` (string, Beta)
  The current replication state of this table.
  Possible values: `CDF_STATE_UNSPECIFIED`, `CDF_STATE_SNAPSHOTTING`, `CDF_STATE_STREAMING`, `CDF_STATE_TERMINATED`, `CDF_STATE_SKIPPED`
- `committed_lsn` (string, Beta)
  The high-watermark Log Sequence Number (LSN) committed to Delta Lake.
- `last_sync_time` (string, Beta)
  The last time changes for this table were written to Delta Lake.
- `create_time` (string, Beta)
  When replication for this table was first established.
- `status_detail` (string, Beta)
  Human-readable detail for the current state (e.g. the skip/error reason).
   Empty for healthy states.

## Example

```json
{
  "name": "string",
  "postgres_table": "string",
  "uc_table": "string",
  "state": "string",
  "committed_lsn": "string",
  "last_sync_time": "string",
  "create_time": "string",
  "status_detail": "string"
}
```


