Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PipelineExecutionStep

import type { PipelineExecutionStep } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

An execution of a step in a pipeline.

interface PipelineExecutionStep {
AttemptCount?: number | null;
CacheHitResult?: CacheHitResult | null;
EndTime?: Date | number | null;
FailureReason?: string | null;
StartTime?: Date | number | null;
StepDescription?: string | null;
StepDisplayName?: string | null;
StepName?: string | null;
StepStatus?: StepStatus | null;
}

§Properties

§
AttemptCount?: number | null
[src]

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

§
CacheHitResult?: CacheHitResult | null
[src]

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

§
EndTime?: Date | number | null
[src]

The time that the step stopped executing.

§
FailureReason?: string | null
[src]

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

§

Metadata to run the pipeline step.

§
StartTime?: Date | number | null
[src]

The time that the step started executing.

§
StepDescription?: string | null
[src]

The description of the step.

§
StepDisplayName?: string | null
[src]

The display name of the step.

§
StepName?: string | null
[src]

The name of the step that is executed.

§
StepStatus?: StepStatus | null
[src]

The status of the step execution.