Values.GroupingAttributeDefinitionSourceA structure that defines how services should be grouped based on specific attributes. This includes the friendly name for the grouping, the source keys to derive values from, and an optional default value.
type nonrec t = {groupingName : GroupingString.t;The friendly name for this grouping attribute, such as BusinessUnit or Environment. This name is used to identify the grouping in the console and APIs.
*)groupingSourceKeys : GroupingSourceKeyStringList.t option;An array of source keys used to derive the grouping attribute value from telemetry data, Amazon Web Services tags, or other sources. For example, ["business_unit", "team"] would look for values in those fields.
*)defaultGroupingValue : GroupingString.t option;The default value to use for this grouping attribute when no value can be derived from the source keys. This ensures all services have a grouping value even if the source data is missing.
*)}val make :
?groupingSourceKeys:??? ->
?defaultGroupingValue:??? ->
groupingName:GroupingString.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of GroupingString.t ] list
| `String of GroupingString.t ])
list ]