Module Values.GetIndexRequestSource

Retrieves information about an index in an OpenSearch Serverless collection, including its schema definition. The index might be configured to conduct automatic semantic enrichment ingestion and search. For more information, see About automatic semantic enrichment.

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

    The unique identifier of the collection containing the index.

    *)
  2. indexName : IndexName.t;
    (*

    The name of the index to retrieve information about.

    *)
}
Sourceval context_ : string
Sourceval make : id:CollectionId.t -> indexName:IndexName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CollectionId.t ]) 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