Module Values.RuleExecutionDetailSource

The details of the runs for a rule and the results produced on an artifact as it passes through stages in the pipeline.

Sourcetype nonrec t = {
  1. pipelineExecutionId : PipelineExecutionId.t option;
    (*

    The ID of the pipeline execution in the stage where the rule was run. Use the GetPipelineState action to retrieve the current pipelineExecutionId of the stage.

    *)
  2. ruleExecutionId : RuleExecutionId.t option;
    (*

    The ID of the run for the rule.

    *)
  3. pipelineVersion : PipelineVersion.t option;
    (*

    The version number of the pipeline with the stage where the rule was run.

    *)
  4. stageName : StageName.t option;
    (*

    The name of the stage where the rule was run.

    *)
  5. ruleName : RuleName.t option;
    (*

    The name of the rule that was run in the stage.

    *)
  6. startTime : Timestamp.t option;
    (*

    The start time of the rule execution.

    *)
  7. lastUpdateTime : Timestamp.t option;
    (*

    The date and time of the last change to the rule execution, in timestamp format.

    *)
  8. updatedBy : LastUpdatedBy.t option;
    (*

    The ARN of the user who changed the rule execution details.

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

    The status of the rule execution. Status categories are InProgress, Succeeded, and Failed.

    *)
  10. input : RuleExecutionInput.t option;
    (*

    Input details for the rule execution, such as role ARN, Region, and input artifacts.

    *)
  11. output : RuleExecutionOutput.t option;
    (*

    Output details for the rule execution, such as the rule execution result.

    *)
}
Sourceval make : ?pipelineExecutionId:??? -> ?ruleExecutionId:??? -> ?pipelineVersion:??? -> ?stageName:??? -> ?ruleName:??? -> ?startTime:??? -> ?lastUpdateTime:??? -> ?updatedBy:??? -> ?status:??? -> ?input:??? -> ?output:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of PipelineVersion.t | `String of PipelineExecutionId.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of ArtifactName.t | `Structure of (string * [> `String of S3Bucket.t ]) list ]) list ] list | `Map of ([> `String of RuleConfigurationKey.t ] * [> `String of RuleConfigurationValue.t ]) list | `String of RoleArn.t | `Structure of (string * [> `Enum of string | `String of RuleProvider.t | `Structure of (string * [> `String of Code.t ]) list ]) list ]) 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