ValidationAction
Actions define a set of steps to run after a Validation Result is produced. Subclass ValidationAction to create a custom Action.
Through a Checkpoint, one can orchestrate the validation of data and configure notifications, data documentation updates, and other actions to take place after the Validation Result is produced.
Run the action.
Parameters
Name Description checkpoint_result
The result of the checkpoint run.
Returns
Type Description dict
A dictionary containing the result of the action.
Signature
class great_expectations.checkpoint.ValidationAction(*, type: str, name: str)
Methods
Signature
run(checkpoint_result: CheckpointResult, action_context: ActionContext | None = None) → dict