Module Values.CriterionSource

The criteria to use in the filter that defines the archive rule. For more information on available filter keys, see IAM Access Analyzer filter keys.

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

    An "equals" operator to match for the filter used to create the rule.

    *)
  2. neq : ValueList.t option;
    (*

    A "not equals" operator to match for the filter used to create the rule.

    *)
  3. contains : ValueList.t option;
    (*

    A "contains" operator to match for the filter used to create the rule.

    *)
  4. exists : Boolean.t option;
    (*

    An "exists" operator to match for the filter used to create the rule.

    *)
}
Sourceval make : ?eq:??? -> ?neq:??? -> ?contains:??? -> ?exists:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] list ]) 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