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

BuildGroup

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

Contains information about a batch build build group. Build groups are used to combine builds that can run in parallel, while still being able to set dependencies on other build groups.

interface BuildGroup {
currentBuildSummary?: BuildSummary | null;
dependsOn?: string[] | null;
identifier?: string | null;
ignoreFailure?: boolean | null;
priorBuildSummaryList?: BuildSummary[] | null;
}

§Properties

§
currentBuildSummary?: BuildSummary | null
[src]

A BuildSummary object that contains a summary of the current build group.

§
dependsOn?: string[] | null
[src]

An array of strings that contain the identifiers of the build groups that this build group depends on.

§
identifier?: string | null
[src]

Contains the identifier of the build group.

§
ignoreFailure?: boolean | null
[src]

Specifies if failures in this build group can be ignored.

§
priorBuildSummaryList?: BuildSummary[] | null
[src]

An array of BuildSummary objects that contain summaries of previous build groups.