Module Values.CriterionAdditionalPropertiesSource

Specifies the operator to use in a property-based condition that filters the results of a query for findings. For detailed information and examples of each operator, see Fundamentals of filtering findings in the Amazon Macie User Guide.

Sourcetype nonrec t = {
  1. eq : string list option;
    (*

    The value for the property matches (equals) the specified value. If you specify multiple values, Macie uses OR logic to join the values.

    *)
  2. eqExactMatch : string list option;
    (*

    The value for the property exclusively matches (equals an exact match for) all the specified values. If you specify multiple values, Amazon Macie uses AND logic to join the values. You can use this operator with the following properties: customDataIdentifiers.detections.arn, customDataIdentifiers.detections.name, resourcesAffected.s3Bucket.tags.key, resourcesAffected.s3Bucket.tags.value, resourcesAffected.s3Object.tags.key, resourcesAffected.s3Object.tags.value, sensitiveData.category, and sensitiveData.detections.type.

    *)
  3. gt : Awso.Import.Int64.t option;
    (*

    The value for the property is greater than the specified value.

    *)
  4. gte : Awso.Import.Int64.t option;
    (*

    The value for the property is greater than or equal to the specified value.

    *)
  5. lt : Awso.Import.Int64.t option;
    (*

    The value for the property is less than the specified value.

    *)
  6. lte : Awso.Import.Int64.t option;
    (*

    The value for the property is less than or equal to the specified value.

    *)
  7. neq : string list option;
    (*

    The value for the property doesn't match (doesn't equal) the specified value. If you specify multiple values, Macie uses OR logic to join the values.

    *)
}
Sourceval make : ?eq:??? -> ?eqExactMatch:??? -> ?gt:??? -> ?gte:??? -> ?lt:??? -> ?lte:??? -> ?neq:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `Long of Awso.Import.Int64.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