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

BuildSummary

import type { BuildSummary } from "https://aws-api.deno.dev/v0.3/services/codebuild.ts?docs=full";

Contains summary information about a batch build group.

interface BuildSummary {
arn?: string | null;
buildStatus?: StatusType | null;
primaryArtifact?: ResolvedArtifact | null;
requestedOn?: Date | number | null;
secondaryArtifacts?: ResolvedArtifact[] | null;
}

§Properties

§
arn?: string | null
[src]

The batch build ARN.

§
buildStatus?: StatusType | null
[src]

The status of the build group.

FAILED: The build group failed.

FAULT: The build group faulted.

IN_PROGRESS: The build group is still in progress.

STOPPED: The build group stopped.

SUCCEEDED: The build group succeeded.

TIMED_OUT: The build group timed out.

§
primaryArtifact?: ResolvedArtifact | null
[src]

A ResolvedArtifact object that represents the primary build artifacts for the build group.

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

When the build was started, expressed in Unix time format.

§
secondaryArtifacts?: ResolvedArtifact[] | null
[src]

An array of ResolvedArtifact objects that represents the secondary build artifacts for the build group.