Module Values.FailedDocumentSource

A list of documents that could not be removed from an Amazon Q Business index. Each entry contains an error message that indicates why the document couldn't be removed from the index.

Sourcetype nonrec t = {
  1. id : DocumentId.t option;
    (*

    The identifier of the document that couldn't be removed from the Amazon Q Business index.

    *)
  2. error : ErrorDetail.t option;
    (*

    An explanation for why the document couldn't be removed from the index.

    *)
  3. dataSourceId : DataSourceId.t option;
    (*

    The identifier of the Amazon Q Business data source connector that contains the failed document.

    *)
}
Sourceval make : ?id:??? -> ?error:??? -> ?dataSourceId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DocumentId.t | `Structure of (string * [> `Enum of string | `String of ErrorMessage.t ]) list ]) 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