Module Values.UpdateCollectionGroupDetailSource

Details about the updated collection group.

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

    The unique identifier of the collection group.

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

    The Amazon Resource Name (ARN) of the collection group.

    *)
  3. name : CollectionGroupName.t option;
    (*

    The name of the collection group.

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

    The description of the collection group.

    *)
  5. capacityLimits : CollectionGroupCapacityLimits.t option;
    (*

    The capacity limits for the collection group, in OpenSearch Compute Units (OCUs).

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

    The Epoch time when the collection group was created.

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

    The date and time when the collection group was last modified.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?description:??? -> ?capacityLimits:??? -> ?createdDate:??? -> ?lastModifiedDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of CollectionGroupId.t | `Structure of (string * [> `Float of CollectionGroupIndexingCapacityValue.t ]) 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