Module Values.QQueryCardSource

A card in a Amazon Q App that generates a response based on the Amazon Q Business service.

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

    The unique identifier of the query card.

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

    The title or label of the query card.

    *)
  3. dependencies : DependencyList.t option;
    (*

    Any dependencies or requirements for the query card.

    *)
  4. type_ : CardType.t option;
    (*

    The type of the card.

    *)
  5. prompt : Prompt.t option;
    (*

    The prompt or instructions displayed for the query card.

    *)
  6. outputSource : CardOutputSource.t option;
    (*

    The source or type of output generated by the query card.

    *)
  7. attributeFilter : AttributeFilter.t option;
    (*

    The Amazon Q Business filters applied in this query card when resolving data sources

    *)
  8. memoryReferences : MemoryReferenceList.t option;
    (*

    Any dependencies for the query card, where the dependencies are references to the collected responses.

    *)
}
Sourceval make : ?id:??? -> ?title:??? -> ?dependencies:??? -> ?type_:??? -> ?prompt:??? -> ?outputSource:??? -> ?attributeFilter:??? -> ?memoryReferences:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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