Module Values.ServiceGroupSource

A structure that represents a logical grouping of services based on shared attributes such as business unit, environment, or entry point.

Sourcetype nonrec t = {
  1. groupName : GroupName.t option;
    (*

    The name of the grouping attribute, such as BusinessUnit or Environment.

    *)
  2. groupValue : GroupValue.t option;
    (*

    The value of the grouping attribute for this service, such as Payments or Production.

    *)
  3. groupSource : GroupSource.t option;
    (*

    The source of the grouping attribute, such as TAG, OTEL, or DEFAULT.

    *)
  4. groupIdentifier : GroupIdentifier.t option;
    (*

    A unique identifier for this grouping attribute value, used for filtering and API operations.

    *)
}
Sourceval make : ?groupName:??? -> ?groupValue:??? -> ?groupSource:??? -> ?groupIdentifier:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GroupName.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