Module Values_1.DataQualityEvaluationRunAdditionalRunOptionsSource

Additional run options you can specify for an evaluation run.

Sourcetype nonrec t = {
  1. cloudWatchMetricsEnabled : Values_0.NullableBoolean.t option;
    (*

    Whether or not to enable CloudWatch metrics.

    *)
  2. resultsS3Prefix : Values_0.UriString.t option;
    (*

    Prefix for Amazon S3 to store results.

    *)
  3. compositeRuleEvaluationMethod : DQCompositeRuleEvaluationMethod.t option;
    (*

    Set the evaluation method for composite rules in the ruleset to ROW/COLUMN

    *)
  4. customLogGroupPrefix : Values_0.GenericString.t option;
    (*

    A custom prefix for the CloudWatch log group names. When specified, evaluation run logs are written to <CustomLogGroupPrefix>/error and <CustomLogGroupPrefix>/output instead of the default /aws-glue/data-quality/error and /aws-glue/data-quality/output log groups.

    *)
}
Sourceval make : ?cloudWatchMetricsEnabled:??? -> ?resultsS3Prefix:??? -> ?compositeRuleEvaluationMethod:??? -> ?customLogGroupPrefix:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.NullableBoolean.t | `Enum of string | `String of Values_0.UriString.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