Module Values.DeleteKnowledgeBaseDocumentsRequestSource

Deletes documents from a data source and syncs the changes to the knowledge base that is connected to it. For more information, see Ingest changes directly into a knowledge base in the Amazon Bedrock User Guide.

Sourcetype nonrec t = {
  1. knowledgeBaseId : Id.t;
    (*

    The unique identifier of the knowledge base that is connected to the data source.

    *)
  2. dataSourceId : Id.t;
    (*

    The unique identifier of the data source that contains the documents.

    *)
  3. clientToken : ClientToken.t option;
    (*

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    *)
  4. documentIdentifiers : DocumentIdentifiers.t;
    (*

    A list of objects, each of which contains information to identify a document to delete.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> knowledgeBaseId:Id.t -> dataSourceId:Id.t -> documentIdentifiers:DocumentIdentifiers.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of S3BucketUri.t ]) list ]) list ] list | `String of Id.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