Module Values.DescribeAccountOverviewResponseSource

For the time range passed in, returns the number of open reactive insight that were created, the number of open proactive insights that were created, and the Mean Time to Recover (MTTR) for all closed reactive insights.

Sourcetype nonrec t = {
  1. reactiveInsights : NumReactiveInsights.t option;
    (*

    An integer that specifies the number of open reactive insights in your Amazon Web Services account that were created during the time range passed in.

    *)
  2. proactiveInsights : NumProactiveInsights.t option;
    (*

    An integer that specifies the number of open proactive insights in your Amazon Web Services account that were created during the time range passed in.

    *)
  3. meanTimeToRecoverInMilliseconds : MeanTimeToRecoverInMilliseconds.t option;
    (*

    The Mean Time to Recover (MTTR) for all closed insights that were created during the time range passed in.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ThrottlingException of ThrottlingException.t
  4. | `ValidationException of ValidationException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?reactiveInsights:??? -> ?proactiveInsights:??? -> ?meanTimeToRecoverInMilliseconds:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NumReactiveInsights.t | `Long of MeanTimeToRecoverInMilliseconds.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