Module Values.SearchQuantumTasksRequestSource

Searches for tasks that match the specified filter values.

Sourcetype nonrec t = {
  1. nextToken : String_.t option;
    (*

    A token used for pagination of results returned in the response. Use the token returned from the previous request to continue search where the previous request ended.

    *)
  2. maxResults : SearchQuantumTasksRequestMaxResultsInteger.t option;
    (*

    Maximum number of results to return in the response.

    *)
  3. filters : SearchQuantumTasksRequestFiltersList.t;
    (*

    Array of SearchQuantumTasksFilter objects to use when searching for quantum tasks.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> ?maxResults:??? -> filters:SearchQuantumTasksRequestFiltersList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of SearchQuantumTasksRequestMaxResultsInteger.t | `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of String256.t ] list | `String of String64.t ]) list ] list | `String of String_.t ]) 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