Module Values.DescribeImportTasksRequestSource

Returns an array of import tasks for your account, including status information, times, IDs, the Amazon S3 Object URL for the import file, and more.

Sourcetype nonrec t = {
  1. filters : DescribeImportTasksFilterList.t option;
    (*

    An array of name-value pairs that you provide to filter the results for the DescribeImportTask request to a specific subset of results. Currently, wildcard values aren't supported for filters.

    *)
  2. maxResults : DescribeImportTasksMaxResults.t option;
    (*

    The maximum number of results that you want this request to return, up to 100.

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

    The token to request a specific page of results.

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