Module Macie.FindingsFilter

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-findingsfilter.html

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

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

and criterion_additional_properties = {
  1. lt : int option;
  2. gte : int option;
  3. neq : string list option;
  4. lte : int option;
  5. eq : string list option;
  6. gt : int option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-macie-findingsfilter-criterionadditionalproperties.html

and finding_criteria = {
  1. criterion : criterion_additional_properties Stdlib__Map.Make(Stdlib.String).t option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-macie-findingsfilter-findingcriteria.html

type properties = {
  1. action : string option;
  2. description : string option;
  3. position : int option;
  4. finding_criteria : finding_criteria;
  5. tags : tag list option;
  6. name : string;
}

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

val make_properties : ?action:string -> ?description:string -> ?position:int -> finding_criteria:finding_criteria -> ?tags:tag list -> name:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_criterion_additional_properties : ?lt:int -> ?gte:int -> ?neq:string list -> ?lte:int -> ?eq:string list -> ?gt:int -> unit -> criterion_additional_properties
val make_finding_criteria : ?criterion:criterion_additional_properties Stdlib__Map.Make(Stdlib.String).t -> unit -> finding_criteria
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_criterion_additional_properties : criterion_additional_properties -> Yojson.Safe.t
val yojson_of_finding_criteria : finding_criteria -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. id : string;
  3. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string