Module Values.InspectionErrorDetailsSource

An object containing data about a handled exception in the tested state.

Sourcetype nonrec t = {
  1. catchIndex : ExceptionHandlerIndex.t option;
    (*

    The array index of the Catch which handled the exception.

    *)
  2. retryIndex : ExceptionHandlerIndex.t option;
    (*

    The array index of the Retry which handled the exception.

    *)
  3. retryBackoffIntervalSeconds : RetryBackoffIntervalSeconds.t option;
    (*

    The duration in seconds of the backoff for a retry on a failed state invocation.

    *)
}
Sourceval make : ?catchIndex:??? -> ?retryIndex:??? -> ?retryBackoffIntervalSeconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ExceptionHandlerIndex.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