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

Step

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

Describes an execution step, for an execution job, for an Amplify app.

interface Step {
artifactsUrl?: string | null;
context?: string | null;
endTime: Date | number;
logUrl?: string | null;
screenshots?: {
[key: string]: string | null | undefined;
}
| null;
startTime: Date | number;
status: JobStatus;
statusReason?: string | null;
stepName: string;
testArtifactsUrl?: string | null;
testConfigUrl?: string | null;
}

§Properties

§
artifactsUrl?: string | null
[src]

The URL to the artifact for the execution step.

§
context?: string | null
[src]

The context for the current step. Includes a build image if the step is build.

§
endTime: Date | number
[src]

The end date and time of the execution step.

§
logUrl?: string | null
[src]

The URL to the logs for the execution step.

§
screenshots?: {
[key: string]: string | null | undefined;
}
| null
[src]

The list of screenshot URLs for the execution step, if relevant.

§
startTime: Date | number
[src]

The start date and time of the execution step.

§

The status of the execution step.

§
statusReason?: string | null
[src]

The reason for the current step status.

§
stepName: string
[src]

The name of the execution step.

§
testArtifactsUrl?: string | null
[src]

The URL to the test artifact for the execution step.

§
testConfigUrl?: string | null
[src]

The URL to the test configuration for the execution step.