Module Values_2.PipelineExecutionStepSource

An execution of a step in a pipeline.

Sourcetype nonrec t = {
  1. stepName : StepName.t option;
    (*

    The name of the step that is executed.

    *)
  2. stepDisplayName : StepDisplayName.t option;
    (*

    The display name of the step.

    *)
  3. stepDescription : StepDescription.t option;
    (*

    The description of the step.

    *)
  4. startTime : Values_0.Timestamp.t option;
    (*

    The time that the step started executing.

    *)
  5. endTime : Values_0.Timestamp.t option;
    (*

    The time that the step stopped executing.

    *)
  6. stepStatus : StepStatus.t option;
    (*

    The status of the step execution.

    *)
  7. cacheHitResult : Values_0.CacheHitResult.t option;
    (*

    If this pipeline execution step was cached, details on the cache hit.

    *)
  8. failureReason : Values_0.FailureReason.t option;
    (*

    The reason why the step failed execution. This is only returned if the step failed its execution.

    *)
  9. metadata : PipelineExecutionStepMetadata.t option;
    (*

    Metadata to run the pipeline step.

    *)
  10. attemptCount : Values_0.Integer.t option;
    (*

    The current attempt of the execution step. For more information, see Retry Policy for SageMaker Pipelines steps.

    *)
  11. selectiveExecutionResult : SelectiveExecutionResult.t option;
    (*

    The ARN from an execution of the current pipeline from which results are reused for this step.

    *)
}
Sourceval make : ?stepName:??? -> ?stepDisplayName:??? -> ?stepDescription:??? -> ?startTime:??? -> ?endTime:??? -> ?stepStatus:??? -> ?cacheHitResult:??? -> ?failureReason:??? -> ?metadata:??? -> ?attemptCount:??? -> ?selectiveExecutionResult:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Integer.t | `String of StepName.t | `Structure of (string * [> `String of string | `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `String of string ]) list ] list | `Map of ([> `String of Values_0.String2048.t ] * [> `String of Values_0.String2048.t ]) list | `String of Values_1.TrainingJobArn.t ]) 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