Module Values.RuleExecutionSource

Represents information about each time a rule is run as part of the pipeline execution for a pipeline configured with conditions.

Sourcetype nonrec t = {
  1. ruleExecutionId : RuleExecutionId.t option;
    (*

    The execution ID for the run of the rule.

    *)
  2. status : RuleExecutionStatus.t option;
    (*

    The status of the run of the rule, such as FAILED.

    *)
  3. summary : ExecutionSummary.t option;
    (*

    A summary of the run of the rule.

    *)
  4. lastStatusChange : Timestamp.t option;
    (*

    The last status change of the rule.

    *)
  5. token : RuleExecutionToken.t option;
    (*

    The system-generated token used to identify a unique request.

    *)
  6. lastUpdatedBy : LastUpdatedBy.t option;
    (*

    The ARN of the user who last changed the rule.

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

    The external ID of the run of the rule.

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

    The URL of a resource external to Amazon Web Services that is used when running the rule (for example, an external repository URL).

    *)
  9. errorDetails : ErrorDetails.t option;
}
Sourceval make : ?ruleExecutionId:??? -> ?status:??? -> ?summary:??? -> ?lastStatusChange:??? -> ?token:??? -> ?lastUpdatedBy:??? -> ?externalExecutionId:??? -> ?externalExecutionUrl:??? -> ?errorDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RuleExecutionId.t | `Structure of (string * [> `String of Code.t ]) list | `Timestamp of Timestamp.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