Module Values_0.AutoDataQualitySource

Specifies configuration options for automatic data quality evaluation in Glue jobs. This structure enables automated data quality checks and monitoring during ETL operations, helping to ensure data integrity and reliability without manual intervention.

Sourcetype nonrec t = {
  1. isEnabled : BooleanValue.t option;
    (*

    Specifies whether automatic data quality evaluation is enabled. When set to true, data quality checks are performed automatically.

    *)
  2. evaluationContext : EnclosedInStringProperty.t option;
    (*

    The evaluation context for the automatic data quality checks. This defines the scope and parameters for the data quality evaluation.

    *)
}
Sourceval make : ?isEnabled:??? -> ?evaluationContext:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanValue.t | `String of EnclosedInStringProperty.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t