Module Values.DescribeJobLogItemsRequestSource

Retrieves a detailed Job log with pagination.

Sourcetype nonrec t = {
  1. jobID : JobID.t;
    (*

    The ID of the Job for which Job log items will be retrieved.

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

    Maximum number of Job log items to retrieve.

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

    The token of the next Job log items to retrieve.

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