Module Values.JobScopeTermSource

Specifies a property- or tag-based condition that defines criteria for including or excluding S3 objects from a classification job. A JobScopeTerm object can contain only one simpleScopeTerm object or one tagScopeTerm object.

Sourcetype nonrec t = {
  1. simpleScopeTerm : SimpleScopeTerm.t option;
    (*

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

    *)
  2. tagScopeTerm : TagScopeTerm.t option;
    (*

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

    *)
}
Sourceval make : ?simpleScopeTerm:??? -> ?tagScopeTerm:??? -> 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 | `String of string ]) 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