Values.OpensearchConfigurationSourceContains details about the configuration of the Amazon OpenSearch Service database used for the AMAZON.QnAIntent.
type nonrec t = {domainEndpoint : DomainEndpoint.t;The endpoint of the Amazon OpenSearch Service domain.
*)indexName : OSIndexName.t;The name of the Amazon OpenSearch Service index.
*)exactResponse : Boolean.t option;Specifies whether to return an exact response or to return an answer generated by the model using the fields you specify from the database.
*)exactResponseFields : ExactResponseFields.t option;Contains the names of the fields used for an exact response to the user.
*)includeFields : OSIncludeFields.t option;Contains a list of fields from the Amazon OpenSearch Service that the model can use to generate the answer to the query.
*)}val make :
?exactResponse:??? ->
?exactResponseFields:??? ->
?includeFields:??? ->
domainEndpoint:DomainEndpoint.t ->
indexName:OSIndexName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `List of [> `String of IncludeField.t ] list
| `String of DomainEndpoint.t
| `Structure of (string * [> `String of QuestionField.t ]) list ])
list ]