Module Values.CreateCollectionDetailSource

Details about the created 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 type of collection.

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

    A description of the collection.

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

    The Amazon Resource Name (ARN) of the collection.

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

    The Amazon Resource Name (ARN) of the KMS key with which to encrypt the collection.

    *)
  8. standbyReplicas : StandbyReplicas.t option;
    (*

    Creates details about an OpenSearch Serverless collection.

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

    Configuration options for vector search capabilities in the collection.

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

    The Epoch time when the collection was created.

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

    The date and time when the collection was last modified.

    *)
  12. collectionGroupName : CollectionGroupName.t option;
    (*

    The name of the collection group that contains this collection.

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