Module Values.OpenSearchServerlessConfigurationSource

Contains details about the storage configuration of the knowledge base in Amazon OpenSearch Service. For more information, see Create a vector index in Amazon OpenSearch Service.

Sourcetype nonrec t = {
  1. collectionArn : OpenSearchServerlessCollectionArn.t;
    (*

    The Amazon Resource Name (ARN) of the OpenSearch Service vector store.

    *)
  2. vectorIndexName : OpenSearchServerlessIndexName.t;
    (*

    The name of the vector store.

    *)
  3. fieldMapping : OpenSearchServerlessFieldMapping.t;
    (*

    Contains the names of the fields to which to map information about the vector store.

    *)
}
Sourceval context_ : string
Sourceval make : collectionArn:OpenSearchServerlessCollectionArn.t -> vectorIndexName:OpenSearchServerlessIndexName.t -> fieldMapping:OpenSearchServerlessFieldMapping.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of OpenSearchServerlessCollectionArn.t | `Structure of (string * [> `String of FieldName.t ]) 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