Module Values.CreateRulesetRequestSource

Creates a new ruleset that can be used in a profile job to validate the data quality of a dataset.

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

    The name of the ruleset to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.

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

    The description of the ruleset.

    *)
  3. targetArn : Arn.t;
    (*

    The Amazon Resource Name (ARN) of a resource (dataset) that the ruleset is associated with.

    *)
  4. 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.

    *)
  5. tags : TagMap.t option;
    (*

    Metadata tags to apply to the ruleset.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> name:RulesetName.t -> targetArn:Arn.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 | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) 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