Module Values_0.EvaluateDataQualitySource

Specifies your data quality evaluation criteria.

Sourcetype nonrec t = {
  1. name : NodeName.t;
    (*

    The name of the data quality evaluation.

    *)
  2. inputs : OneInput.t;
    (*

    The inputs of your data quality evaluation.

    *)
  3. ruleset : DQDLString.t;
    (*

    The ruleset for your data quality evaluation.

    *)
  4. output : DQTransformOutput.t option;
    (*

    The output of your data quality evaluation.

    *)
  5. publishingOptions : DQResultsPublishingOptions.t option;
    (*

    Options to configure how your results are published.

    *)
  6. stopJobOnFailureOptions : DQStopJobOnFailureOptions.t option;
    (*

    Options to configure how your job will stop if your data quality evaluation fails.

    *)
}
Sourceval context_ : string
Sourceval make : ?output:??? -> ?publishingOptions:??? -> ?stopJobOnFailureOptions:??? -> name:NodeName.t -> inputs:OneInput.t -> ruleset:DQDLString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of NodeId.t ] list | `String of NodeName.t | `Structure of (string * [> `Boolean of BoxedBoolean.t | `Enum of string | `String of GenericLimitedString.t ]) list ]) 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