Module Values.ServiceHealthSource

Represents the health of an Amazon Web Services service.

Sourcetype nonrec t = {
  1. serviceName : ServiceName.t option;
    (*

    The name of the Amazon Web Services service.

    *)
  2. insight : ServiceInsightHealth.t option;
    (*

    Represents the health of an Amazon Web Services service. This is a ServiceInsightHealth that contains the number of open proactive and reactive insights for this service.

    *)
  3. analyzedResourceCount : AnalyzedResourceCount.t option;
    (*

    Number of resources that DevOps Guru is monitoring in an analyzed Amazon Web Services service.

    *)
}
Sourceval make : ?serviceName:??? -> ?insight:??? -> ?analyzedResourceCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of AnalyzedResourceCount.t | `Structure of (string * [> `Integer of NumOpenProactiveInsights.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