Values.UpdateIndexRequestSourceUpdates an existing OpenSearch index schema and semantic enrichment configuration. This operation allows modification of field mappings and semantic search settings for text fields. Changes to semantic enrichment configuration will apply to newly ingested documents.
type nonrec t = {domainName : DomainName.t;indexName : IndexName.t;The name of the index to update.
*)indexSchema : IndexSchema.t;The updated JSON schema for the index including any changes to mappings, settings, and semantic enrichment configuration.
*)}val make :
domainName:DomainName.t ->
indexName:IndexName.t ->
indexSchema:IndexSchema.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `String of DomainName.t | `Structure of 'a list ]) list ]