DataBrew.Ruleset
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-ruleset.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-ruleset-substitutionvalue.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-ruleset-columnselector.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-ruleset-threshold.html
and rule = {
column_selectors : column_selector list option;
disabled : bool option;
substitution_map : substitution_value list option;
name : string;
check_expression : string;
threshold : threshold option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-ruleset-rule.html
type properties = {
description : string option;
target_arn : string;
rules : rule list;
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 ]
val create_attributes : string -> attributes