Module Values.UpdateRulesetRequestSource

Updates specified ruleset.

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

    The name of the ruleset to be updated.

    *)
  2. description : RulesetDescription.t option;
    (*

    The description of the ruleset.

    *)
  3. rules : RuleList.t;
    (*

    A list of rules that are defined with the ruleset. A rule includes one or more checks to be validated on a DataBrew dataset.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> name:RulesetName.t -> rules:RuleList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Disabled.t | `List of [> `Structure of (string * [> `String of ColumnName.t ]) list ] list | `Map of ([> `String of ValueReference.t ] * [> `String of ConditionValue.t ]) list | `String of RuleName.t | `Structure of (string * [> `Double of ThresholdValue.t | `Enum of string ]) list ]) list ] list | `String of RulesetName.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