Module Values.DocumentDetailsSource

The details of a document within an Amazon Q Business index.

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

    The identifier of the document.

    *)
  2. status : DocumentStatus.t option;
    (*

    The current status of the document.

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

    An error message associated with the document.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The timestamp for when the document was created.

    *)
  5. updatedAt : Timestamp.t option;
    (*

    The timestamp for when the document was last updated.

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