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

ListPipelineExecutionStepsResponse

import type { ListPipelineExecutionStepsResponse } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListPipelineExecutionStepsResponse {
NextToken?: string | null;
PipelineExecutionSteps?: PipelineExecutionStep[] | null;
}

§Properties

§
NextToken?: string | null
[src]

If the result of the previous ListPipelineExecutionSteps request was truncated, the response includes a NextToken. To retrieve the next set of pipeline execution steps, use the token in the next request.

§
PipelineExecutionSteps?: PipelineExecutionStep[] | null
[src]

A list of PipeLineExecutionStep objects. Each PipeLineExecutionStep consists of StepName, StartTime, EndTime, StepStatus, and Metadata. Metadata is an object with properties for each job that contains relevant information about the job created by the step.