Module Values.GroupDefinitionSource

Represents a group when you specify a group by criteria or in the response to a query with a specific grouping.

Sourcetype nonrec t = {
  1. type_ : GroupDefinitionType.t option;
    (*

    The string that represents the type of group.

    *)
  2. key : GroupDefinitionKey.t option;
    (*

    The string that represents a key for a specified group.

    *)
}
Sourceval make : ?type_:??? -> ?key:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GroupDefinitionKey.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