Module Values.DescribeImportTasksRequestSource

Lists and describes import tasks, with optional filtering by import status and source ARN.

Sourcetype nonrec t = {
  1. importId : ImportId.t option;
    (*

    Optional filter to describe a specific import task by its ID.

    *)
  2. importStatus : ImportStatus.t option;
    (*

    Optional filter to list imports by their status. Valid values are IN_PROGRESS, CANCELLED, COMPLETED and FAILED.

    *)
  3. importSourceArn : Arn.t option;
    (*

    Optional filter to list imports from a specific source

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

    The maximum number of import tasks to return in the response. Default: 50

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

    The pagination token for the next set of results.

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