Module Values.ActionExecutionDetailSource

Returns information about an execution of an action, including the action execution ID, and the name, version, and timing of the action.

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

    The pipeline execution ID for the action execution.

    *)
  2. actionExecutionId : ActionExecutionId.t option;
    (*

    The action execution ID.

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

    The version of the pipeline where the action was run.

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

    The name of the stage that contains the action.

    *)
  5. actionName : ActionName.t option;
    (*

    The name of the action.

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

    The start time of the action execution.

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

    The last update time of the action execution.

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

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

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

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

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

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

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

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

    *)
}
Sourceval make : ?pipelineExecutionId:??? -> ?actionExecutionId:??? -> ?pipelineVersion:??? -> ?stageName:??? -> ?actionName:??? -> ?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 ActionConfigurationKey.t ] * [> `String of ActionConfigurationValue.t ]) list | `String of RoleArn.t | `Structure of (string * [> `Enum of string | `String of ActionProvider.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