Module Values.DescribeExportTasksRequestSource

Retrieve status of one or more export tasks. You can retrieve the status of up to 100 export tasks.

Sourcetype nonrec t = {
  1. exportIds : ExportIds.t option;
    (*

    One or more unique identifiers used to query the status of an export request.

    *)
  2. filters : ExportFilters.t option;
    (*

    One or more filters. AgentId - ID of the agent whose collected data will be exported

    *)
  3. maxResults : Integer.t option;
    (*

    The maximum number of volume results returned by DescribeExportTasks in paginated output. When this parameter is used, DescribeExportTasks only returns maxResults results in a single page along with a nextToken response element.

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

    The nextToken value returned from a previous paginated DescribeExportTasks request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

    *)
}
Sourceval make : ?exportIds:??? -> ?filters:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of ConfigurationsExportId.t | `Structure of (string * [> `List of [> `String of FilterValue.t ] list | `String of FilterName.t ]) list ] list | `String of NextToken.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