Module Values.DescribeJobsRequestSource

Returns a list of Jobs. Use the JobsID and fromDate and toData filters to limit which jobs are returned. The response is sorted by creationDataTime - latest date first. Jobs are normally created by the StartTest, StartCutover, and TerminateTargetInstances APIs. Jobs are also created by DiagnosticLaunch and TerminateDiagnosticInstances, which are APIs available only to *Support* and only used in response to relevant support tickets.

Sourcetype nonrec t = {
  1. filters : DescribeJobsRequestFilters.t option;
    (*

    Request to describe Job log filters.

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

    Request to describe job log items by max results.

    *)
  3. nextToken : PaginationToken.t option;
    (*

    Request to describe job log items by next token.

    *)
  4. accountID : AccountID.t option;
    (*

    Request to describe job log items by Account ID.

    *)
}
Sourceval make : ?filters:??? -> ?maxResults:??? -> ?nextToken:??? -> ?accountID:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResultsType.t | `String of PaginationToken.t | `Structure of (string * [> `List of [> `String of JobID.t ] list | `String of ISO8601DatetimeString.t ]) 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