Module Values.QueryGenerationConfigurationSource

Contains configurations for query generation. For more information, see Build a knowledge base by connecting to a structured data source in the Amazon Bedrock User Guide..

Sourcetype nonrec t = {
  1. executionTimeoutSeconds : QueryExecutionTimeoutSeconds.t option;
    (*

    The time after which query generation will time out.

    *)
  2. generationContext : QueryGenerationContext.t option;
    (*

    Specifies configurations for context to use during query generation.

    *)
}
Sourceval make : ?executionTimeoutSeconds:??? -> ?generationContext:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of QueryExecutionTimeoutSeconds.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of QueryGenerationColumnName.t ]) list ] list | `String of QueryGenerationTableName.t ]) list ] list ]) 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