Values.IndexConfigurationSummarySourceSummary information on the configuration of an index.
type nonrec t = {name : IndexName.t option;The name of the index.
*)id : IndexId.t option;A identifier for the index. Use this to identify the index when you are using APIs such as Query, DescribeIndex, UpdateIndex, and DeleteIndex.
*)edition : IndexEdition.t option;Indicates whether the index is a Enterprise Edition index or a Developer Edition index.
*)createdAt : Timestamp.t option;The Unix timestamp when the index was created.
*)updatedAt : Timestamp.t option;The Unix timestamp when the index was last updated.
*)status : IndexStatus.t option;The current status of the index. When the status is ACTIVE, the index is ready to search.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of IndexName.t
| `Timestamp of Timestamp.t ])
list ]