Module Values.ValidationConfigurationSource

Configuration for data quality validation. Used to select the Rulesets and Validation Mode to be used in the profile job. When ValidationConfiguration is null, the profile job will run without data quality validation.

Sourcetype nonrec t = {
  1. rulesetArn : Arn.t;
    (*

    The Amazon Resource Name (ARN) for the ruleset to be validated in the profile job. The TargetArn of the selected ruleset should be the same as the Amazon Resource Name (ARN) of the dataset that is associated with the profile job.

    *)
  2. validationMode : ValidationMode.t option;
    (*

    Mode of data quality validation. Default mode is “CHECK_ALL” which verifies all rules defined in the selected ruleset.

    *)
}
Sourceval context_ : string
Sourceval make : ?validationMode:??? -> rulesetArn:Arn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.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