Module Values.GroupingConfigurationSource

A structure that contains the complete grouping configuration for an account, including all defined grouping attributes and metadata about when it was last updated.

Sourcetype nonrec t = {
  1. groupingAttributeDefinitions : GroupingAttributeDefinitions.t option;
    (*

    An array of grouping attribute definitions that specify how services should be grouped based on various attributes and source keys.

    *)
  2. updatedAt : Timestamp.t option;
    (*

    The timestamp when this grouping configuration was last updated. When used in a raw HTTP Query API, it is formatted as epoch time in seconds.

    *)
}
Sourceval make : ?groupingAttributeDefinitions:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of GroupingString.t ] list | `String of GroupingString.t ]) list ] list | `Timestamp of Timestamp.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