Module Values.DescribeJobsRequestSource

Returns a list of Jobs. Use the JobsID and fromDate and toDate filters to limit which jobs are returned. The response is sorted by creationDataTime - latest date first. Jobs are created by the StartRecovery, TerminateRecoveryInstances and StartFailbackLaunch 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;
    (*

    A set of filters by which to return Jobs.

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

    Maximum number of Jobs to retrieve.

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

    The token of the next Job to retrieve.

    *)
}
Sourceval make : ?filters:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of StrictlyPositiveInteger.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