Module Values.SpanCitationSource

A citation that spans a specific range of text.

Sourcetype nonrec t = {
  1. contentId : Uuid.t option;
    (*

    The identifier of the content being cited in the span.

    *)
  2. title : SensitiveString.t option;
    (*

    The title of the content being cited in the span.

    *)
  3. knowledgeBaseId : Uuid.t option;
    (*

    The identifier of the knowledge base containing the cited content.

    *)
  4. knowledgeBaseArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the knowledge base containing the cited content.

    *)
}
Sourceval make : ?contentId:??? -> ?title:??? -> ?knowledgeBaseId:??? -> ?knowledgeBaseArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Uuid.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