Module Values.UpdateCollectionDetailSource

Details about an updated OpenSearch Serverless collection.

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

    The unique identifier of the collection.

    *)
  2. name : CollectionName.t option;
    (*

    The name of the collection.

    *)
  3. status : CollectionStatus.t option;
    (*

    The current status of the collection.

    *)
  4. type_ : CollectionType.t option;
    (*

    The collection type.

    *)
  5. description : String_.t option;
    (*

    The description of the collection.

    *)
  6. vectorOptions : VectorOptions.t option;
    (*

    Configuration options for vector search capabilities in the collection.

    *)
  7. arn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the collection.

    *)
  8. createdDate : Long.t option;
    (*

    The date and time when the collection was created.

    *)
  9. lastModifiedDate : Long.t option;
    (*

    The date and time when the collection was last modified.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?status:??? -> ?type_:??? -> ?description:??? -> ?vectorOptions:??? -> ?arn:??? -> ?createdDate:??? -> ?lastModifiedDate:??? -> unit -> t
Sourceval 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 ]
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