Module Values.BatchDeleteDocumentRequestSource

Asynchronously deletes one or more documents added using the BatchPutDocument API from an Amazon Q Business index. You can see the progress of the deletion, and any error messages related to the process, by using CloudWatch.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t;
    (*

    The identifier of the Amazon Q Business application.

    *)
  2. indexId : IndexId.t;
    (*

    The identifier of the Amazon Q Business index that contains the documents to delete.

    *)
  3. documents : DeleteDocuments.t;
    (*

    Documents deleted from the Amazon Q Business index.

    *)
  4. dataSourceSyncId : ExecutionId.t option;
    (*

    The identifier of the data source sync during which the documents were deleted.

    *)
}
Sourceval context_ : string
Sourceval make : ?dataSourceSyncId:??? -> applicationId:ApplicationId.t -> indexId:IndexId.t -> documents:DeleteDocuments.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of DocumentId.t ]) list ] list | `String of ApplicationId.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