Module Values.CollectionGroupSummarySource

Summary information about a 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. numberOfCollections : Integer.t option;
    (*

    The number of collections within the collection group.

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

    The Epoch time when the collection group was created.

    *)
  6. capacityLimits : CollectionGroupCapacityLimits.t option;
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?numberOfCollections:??? -> ?createdDate:??? -> ?capacityLimits:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `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