Values.DescribeImportTaskBatchesRequestSourceGets detailed information about the individual batches within an import task, including their status and any error messages. For CloudTrail Event Data Store sources, a batch refers to a subset of stored events grouped by their eventTime.
type nonrec t = {importId : ImportId.t;The ID of the import task to get batch information for.
*)batchImportStatus : ImportStatusList.t option;Optional filter to list import batches by their status. Accepts multiple status values: IN_PROGRESS, CANCELLED, COMPLETED and FAILED.
*)limit : DescribeLimit.t option;The maximum number of import batches to return in the response. Default: 10
*)nextToken : NextToken.t option;The pagination token for the next set of results.
*)}val make :
?batchImportStatus:??? ->
?limit:??? ->
?nextToken:??? ->
importId:ImportId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of DescribeLimit.t
| `List of [> `Enum of string ] list
| `String of ImportId.t ])
list ]