Module Values.DeleteIndexRequestSource

Deletes an index from an OpenSearch Serverless collection. Be aware that 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 to delete.

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

    The name of the index to delete.

    *)
}
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