Values.DescribeExportTasksRequestSourceLists the specified export tasks. You can list all your export tasks or filter the results based on task ID or task status.
type nonrec t = {taskId : ExportTaskId.t option;The ID of the export task. Specifying a task ID filters the results to one or zero export tasks.
*)statusCode : ExportTaskStatusCode.t option;The status code of the export task. Specifying a status code filters the results to zero or more export tasks.
*)nextToken : NextToken.t option;The token for the next set of items to return. (You received this token from a previous call.)
*)limit : DescribeLimit.t option;The maximum number of items returned. If you don't specify a value, the default is up to 50 items.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of DescribeLimit.t
| `String of ExportTaskId.t ])
list ]