Module Values.StartJobsQueryRequestSource

Start an asynchronous jobs query using the provided filters. To receive the list of jobs that match your query, call the GetJobsQueryResults API using the query ID returned by this API.

Sourcetype nonrec t = {
  1. filterList : JobsQueryFilter.t list option;
    (*

    Optional. Provide an array of JobsQueryFilters for your StartJobsQuery request.

    *)
  2. maxResults : int option;
    (*

    Optional. Number of jobs, up to twenty, that will be included in the jobs query.

    *)
  3. nextToken : string option;
    (*

    Use this string to request the next batch of jobs matched by a jobs query.

    *)
  4. order : Order.t option;
    (*

    Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.

    *)
}
Sourceval make : ?filterList:??? -> ?maxResults:??? -> ?nextToken:??? -> ?order:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int | `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list ]) list ] list | `String of string ]) 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