Module Values.ScanResourceCriteriaSource

Contains information about criteria used to filter resources before triggering malware scan.

Sourcetype nonrec t = {
  1. include_ : ScanCriterion.t option;
    (*

    Represents condition that when matched will allow a malware scan for a certain resource.

    *)
  2. exclude : ScanCriterion.t option;
    (*

    Represents condition that when matched will prevent a malware scan for a certain resource.

    *)
}
Sourceval make : ?include_:??? -> ?exclude:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `Enum of string ] * [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list ]) list ]) 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