Module Values.UpdateGroupRequestSource

Updates a group resource.

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

    The case-sensitive name of the group.

    *)
  2. groupARN : GroupARN.t option;
    (*

    The ARN that was generated upon creation.

    *)
  3. filterExpression : FilterExpression.t option;
    (*

    The updated filter expression defining criteria by which to group traces.

    *)
  4. insightsConfiguration : InsightsConfiguration.t option;
    (*

    The structure containing configurations related to insights. The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group. The NotificationsEnabled boolean can be set to true to enable insights notifications for the group. Notifications can only be enabled on a group with InsightsEnabled set to true.

    *)
}
Sourceval make : ?groupName:??? -> ?groupARN:??? -> ?filterExpression:??? -> ?insightsConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GroupName.t | `Structure of (string * [> `Boolean of NullableBoolean.t ]) list ]) 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