Module Values.DescribeImportTaskBatchesRequestSource

Gets detailed information about the individual batches within an import task, including their status and any error messages. For CloudTrail Event Data Store sources, a batch refers to a subset of stored events grouped by their eventTime.

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

    The ID of the import task to get batch information for.

    *)
  2. batchImportStatus : ImportStatusList.t option;
    (*

    Optional filter to list import batches by their status. Accepts multiple status values: IN_PROGRESS, CANCELLED, COMPLETED and FAILED.

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

    The maximum number of import batches to return in the response. Default: 10

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

    The pagination token for the next set of results.

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