Module Values_0.FailureDetailsSource

Information about an Automation failure.

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

    The stage of the Automation execution when the failure occurred. The stages include the following: InputValidation, PreVerification, Invocation, PostVerification.

    *)
  2. failureType : String_.t option;
    (*

    The type of Automation failure. Failure types include the following: Action, Permission, Throttling, Verification, Internal.

    *)
  3. details : AutomationParameterMap.t option;
    (*

    Detailed information about the Automation step failure.

    *)
}
Sourceval make : ?failureStage:??? -> ?failureType:??? -> ?details:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of AutomationParameterKey.t ] * [> `List of [> `String of AutomationParameterValue.t ] list ]) list | `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