Module Values.DescribeExportTasksRequestSource

Lists the specified export tasks. You can list all your export tasks or filter the results based on task ID or task status.

Sourcetype nonrec t = {
  1. taskId : ExportTaskId.t option;
    (*

    The ID of the export task. Specifying a task ID filters the results to one or zero export tasks.

    *)
  2. statusCode : ExportTaskStatusCode.t option;
    (*

    The status code of the export task. Specifying a status code filters the results to zero or more export tasks.

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

    The token for the next set of items to return. (You received this token from a previous call.)

    *)
  4. limit : DescribeLimit.t option;
    (*

    The maximum number of items returned. If you don't specify a value, the default is up to 50 items.

    *)
}
Sourceval make : ?taskId:??? -> ?statusCode:??? -> ?nextToken:??? -> ?limit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of DescribeLimit.t | `String of ExportTaskId.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