Module Values_2.AttributeSummarySource

A summary report for the attribute across all Regions.

Sourcetype nonrec t = {
  1. attributeName : Values_0.String_.t option;
    (*

    The name of the attribute.

    *)
  2. mostFrequentValue : Values_0.String_.t option;
    (*

    The configuration value that is most frequently observed for the attribute.

    *)
  3. numberOfMatchedAccounts : Values_0.Integer.t option;
    (*

    The number of accounts with the same configuration value for the attribute that is most frequently observed.

    *)
  4. numberOfUnmatchedAccounts : Values_0.Integer.t option;
    (*

    The number of accounts with a configuration value different from the most frequently observed value for the attribute.

    *)
  5. regionalSummaries : Values_1.RegionalSummaryList.t option;
    (*

    The summary report for each Region for the attribute.

    *)
}
Sourceval make : ?attributeName:??? -> ?mostFrequentValue:??? -> ?numberOfMatchedAccounts:??? -> ?numberOfUnmatchedAccounts:??? -> ?regionalSummaries:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_0.Integer.t | `List of [> `Structure of (string * [> `Integer of int | `String of string ]) list ] list | `String of Values_0.String_.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