Module Values.AccountInsightHealthSource

Information about the number of open reactive and proactive insights that can be used to gauge the health of your system.

Sourcetype nonrec t = {
  1. openProactiveInsights : NumOpenProactiveInsights.t option;
    (*

    An integer that specifies the number of open proactive insights in your Amazon Web Services account.

    *)
  2. openReactiveInsights : NumOpenReactiveInsights.t option;
    (*

    An integer that specifies the number of open reactive insights in your Amazon Web Services account.

    *)
}
Sourceval make : ?openProactiveInsights:??? -> ?openReactiveInsights:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NumOpenProactiveInsights.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