Values.BatchGetTaskResponseSourceRetrieves multiple tasks in a single request. This is a batch version of the GetTask API. The result of getting each task is reported individually in the response. Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200.
type nonrec t = {tasks : BatchGetTaskItems.t option;A list of tasks that were successfully retrieved.
*)errors : BatchGetTaskErrors.t option;A list of errors for tasks that could not be retrieved.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `InternalServerErrorException of InternalServerErrorException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `InternalServerErrorException of InternalServerErrorException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `InternalServerErrorException of InternalServerErrorException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of
(string
* [> `Enum of string
| `Integer of TaskRetryCount.t
| `Map of
([> `String of String_.t ]
* [> `Structure of
(string * [> `String of IntString.t ]) list ])
list
| `String of FarmId.t
| `Timestamp of CreatedAt.t ])
list ]
list ])
list ]