Module Values.FailureDetailsSource

Represents information about failure details.

Sourcetype nonrec t = {
  1. type_ : FailureType.t;
    (*

    The type of the failure.

    *)
  2. message : Message.t;
    (*

    The message about the failure.

    *)
  3. externalExecutionId : ExecutionId.t option;
    (*

    The external ID of the run of the action that failed.

    *)
}
Sourceval context_ : string
Sourceval make : ?externalExecutionId:??? -> type_:FailureType.t -> message:Message.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Message.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