Module Values.GroupingIdentifierSource

A key-value pair that identifies how log groups are grouped in aggregate summaries.

Sourcetype nonrec t = {
  1. key : GroupingIdentifierKey.t option;
    (*

    The key that identifies the grouping characteristic. The format of the key uses dot notation. Examples are, dataSource.Name, dataSource.Type, and dataSource.Format.

    *)
  2. value : GroupingIdentifierValue.t option;
    (*

    The value associated with the grouping characteristic. Examples are amazon_vpc, flow, and OCSF.

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