You are viewing an outdated version of the documentation.

This documentation is for an older version (1.4.7) of Dagster. You can view the version of this page from our latest release below.

Source code for dagster_census.types

from typing import Any, Mapping, NamedTuple


[docs]class CensusOutput( NamedTuple( "_CensusOutput", [ ("sync_run", Mapping[str, Any]), ("source", Mapping[str, Any]), ("destination", Mapping[str, Any]), ], ) ): """Contains recorded information about the state of a Census sync after a sync completes. Attributes: sync_run (Dict[str, Any]): The details of the specific sync run. source (Dict[str, Any]): Information about the source for the Census sync. destination (Dict[str, Any]): Information about the destination for the Census sync. """