Module Values_2.PipelineExecutionSource

An execution of a pipeline.

Sourcetype nonrec t = {
  1. pipelineArn : Values_1.PipelineArn.t option;
    (*

    The Amazon Resource Name (ARN) of the pipeline that was executed.

    *)
  2. pipelineExecutionArn : Values_0.PipelineExecutionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the pipeline execution.

    *)
  3. pipelineExecutionDisplayName : Values_1.PipelineExecutionName.t option;
    (*

    The display name of the pipeline execution.

    *)
  4. pipelineExecutionStatus : Values_1.PipelineExecutionStatus.t option;
    (*

    The status of the pipeline status.

    *)
  5. pipelineExecutionDescription : Values_1.PipelineExecutionDescription.t option;
    (*

    The description of the pipeline execution.

    *)
  6. pipelineExperimentConfig : Values_1.PipelineExperimentConfig.t option;
  7. failureReason : Values_1.PipelineExecutionFailureReason.t option;
    (*

    If the execution failed, a message describing why.

    *)
  8. creationTime : Values_0.Timestamp.t option;
    (*

    The creation time of the pipeline execution.

    *)
  9. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The time that the pipeline execution was last modified.

    *)
  10. createdBy : Values_0.UserContext.t option;
  11. lastModifiedBy : Values_0.UserContext.t option;
  12. parallelismConfiguration : Values_1.ParallelismConfiguration.t option;
    (*

    The parallelism configuration applied to the pipeline execution.

    *)
  13. selectiveExecutionConfig : Values_1.SelectiveExecutionConfig.t option;
    (*

    The selective execution configuration applied to the pipeline run.

    *)
  14. pipelineParameters : ParameterList.t option;
    (*

    Contains a list of pipeline parameters. This list can be empty.

    *)
  15. pipelineVersionId : Values_1.PipelineVersionId.t option;
    (*

    The ID of the pipeline version that started this execution.

    *)
  16. pipelineVersionDisplayName : Values_1.PipelineVersionName.t option;
    (*

    The display name of the pipeline version that started this execution.

    *)
}
Sourceval make : ?pipelineArn:??? -> ?pipelineExecutionArn:??? -> ?pipelineExecutionDisplayName:??? -> ?pipelineExecutionStatus:??? -> ?pipelineExecutionDescription:??? -> ?pipelineExperimentConfig:??? -> ?failureReason:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?createdBy:??? -> ?lastModifiedBy:??? -> ?parallelismConfiguration:??? -> ?selectiveExecutionConfig:??? -> ?pipelineParameters:??? -> ?pipelineVersionId:??? -> ?pipelineVersionDisplayName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of PipelineParameterName.t ]) list ] list | `Long of Values_1.PipelineVersionId.t | `String of Values_1.PipelineArn.t | `Structure of (string * [> `Integer of int | `List of [> `Structure of (string * [> `String of Values_0.String256.t ]) list ] list | `String of Values_0.ExperimentEntityName.t | `Structure of (string * [> `String of string ]) list ]) list | `Timestamp of Values_0.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