Module Values_0.RegionalSummarySource

A summary report for the attribute for a Region.

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

    The Amazon Web Services Region.

    *)
  2. numberOfMatchedAccounts : Integer.t option;
    (*

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

    *)
  3. numberOfUnmatchedAccounts : Integer.t option;
    (*

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

    *)
}
Sourceval make : ?regionName:??? -> ?numberOfMatchedAccounts:??? -> ?numberOfUnmatchedAccounts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of 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