Values.UpdateCollectionDetailSourceDetails about an updated OpenSearch Serverless collection.
type nonrec t = {id : CollectionId.t option;The unique identifier of the collection.
*)name : CollectionName.t option;The name of the collection.
*)status : CollectionStatus.t option;The current status of the collection.
*)type_ : CollectionType.t option;The collection type.
*)description : String_.t option;The description of the collection.
*)vectorOptions : VectorOptions.t option;Configuration options for vector search capabilities in the collection.
*)arn : String_.t option;The Amazon Resource Name (ARN) of the collection.
*)createdDate : Long.t option;The date and time when the collection was created.
*)lastModifiedDate : Long.t option;The date and time when the collection was last modified.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Long of Long.t
| `String of CollectionId.t
| `Structure of (string * [> `Enum of string ]) list ])
list ]