Module Values.RuleExecutionResultSource

Execution result information, such as the external execution ID.

Sourcetype nonrec t = {
  1. externalExecutionId : ExternalExecutionId.t option;
    (*

    The external ID for the rule execution.

    *)
  2. externalExecutionSummary : ExternalExecutionSummary.t option;
    (*

    The external provider summary for the rule execution.

    *)
  3. externalExecutionUrl : Url.t option;
    (*

    The deepest external link to the external resource (for example, a repository URL or deployment endpoint) that is used when running the rule.

    *)
  4. errorDetails : ErrorDetails.t option;
}
Sourceval make : ?externalExecutionId:??? -> ?externalExecutionSummary:??? -> ?externalExecutionUrl:??? -> ?errorDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ExternalExecutionId.t | `Structure of (string * [> `String of Code.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