Module Values.GroupedResourceCountSource

The count of resources that are grouped by the group name.

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

    The name of the group that can be region, account ID, or resource type. For example, region1, region2 if the region was chosen as GroupByKey.

    *)
  2. resourceCount : Long.t option;
    (*

    The number of resources in the group.

    *)
}
Sourceval make : ?groupName:??? -> ?resourceCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of StringWithCharLimit256.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