Module DataBrew.Ruleset

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-ruleset.html

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and substitution_value = {
  1. value : string;
  2. value_reference : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-ruleset-substitutionvalue.html

and column_selector = {
  1. regex : string option;
  2. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-ruleset-columnselector.html

and threshold = {
  1. type_ : string option;
  2. value : float;
  3. unit : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-ruleset-threshold.html

and rule = {
  1. column_selectors : column_selector list option;
  2. disabled : bool option;
  3. substitution_map : substitution_value list option;
  4. name : string;
  5. check_expression : string;
  6. threshold : threshold option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-ruleset-rule.html

type properties = {
  1. description : string option;
  2. target_arn : string;
  3. rules : rule list;
  4. tags : tag list option;
  5. name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-ruleset.html;

val make_properties : ?description:string -> target_arn:string -> rules:rule list -> ?tags:tag list -> name:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_substitution_value : value:string -> value_reference:string -> unit -> substitution_value
val make_column_selector : ?regex:string -> ?name:string -> unit -> column_selector
val make_threshold : ?type_:string -> value:float -> ?unit:string -> unit -> threshold
val make_rule : ?column_selectors:column_selector list -> ?disabled:bool -> ?substitution_map:substitution_value list -> name:string -> check_expression:string -> ?threshold:threshold -> unit -> rule
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_substitution_value : substitution_value -> Yojson.Safe.t
val yojson_of_column_selector : column_selector -> Yojson.Safe.t
val yojson_of_threshold : threshold -> Yojson.Safe.t
val yojson_of_rule : rule -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string