Module Values.DescribeJobLogItemsRequestSource

Retrieves detailed job log items with paging.

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

    Request to describe Job log job ID.

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

    Request to describe Job log item maximum results.

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

    Request to describe Job log next token.

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

    Request to describe Job log Account ID.

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