Module Values.CollectionSummarySource

Details about each 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. arn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the collection.

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

    The ARN of the Amazon Web Services Key Management Service key used to encrypt the collection.

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

    The name of the collection group that contains this collection.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?status:??? -> ?arn:??? -> ?kmsKeyArn:??? -> ?collectionGroupName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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