Module Values.CriteriaForJobSource

Specifies a property- or tag-based condition that defines criteria for including or excluding S3 buckets from a classification job.

Sourcetype nonrec t = {
  1. simpleCriterion : SimpleCriterionForJob.t option;
    (*

    A property-based condition that defines a property, operator, and one or more values for including or excluding buckets from the job.

    *)
  2. tagCriterion : TagCriterionForJob.t option;
    (*

    A tag-based condition that defines an operator and tag keys, tag values, or tag key and value pairs for including or excluding buckets from the job.

    *)
}
Sourceval make : ?simpleCriterion:??? -> ?tagCriterion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `String of string | `Structure of (string * [> `String of string ]) 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