Values.DescribeImportTasksRequestSourceLists and describes import tasks, with optional filtering by import status and source ARN.
type nonrec t = {importId : ImportId.t option;Optional filter to describe a specific import task by its ID.
*)importStatus : ImportStatus.t option;Optional filter to list imports by their status. Valid values are IN_PROGRESS, CANCELLED, COMPLETED and FAILED.
*)importSourceArn : Arn.t option;Optional filter to list imports from a specific source
*)limit : DescribeLimit.t option;The maximum number of import tasks to return in the response. Default: 50
*)nextToken : NextToken.t option;The pagination token for the next set of results.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of DescribeLimit.t
| `String of ImportId.t ])
list ]