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

ProjectBuildBatchConfig

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

Contains configuration information about a batch build project.

interface ProjectBuildBatchConfig {
batchReportMode?: BatchReportModeType | null;
combineArtifacts?: boolean | null;
restrictions?: BatchRestrictions | null;
serviceRole?: string | null;
timeoutInMins?: number | null;
}

§Properties

§
batchReportMode?: BatchReportModeType | null
[src]

Specifies how build status reports are sent to the source provider for the batch build. This property is only used when the source provider for your project is Bitbucket, GitHub, or GitHub Enterprise, and your project is configured to report build statuses to the source provider.

REPORT_AGGREGATED_BATCH: (Default) Aggregate all of the build statuses into a single status report.

REPORT_INDIVIDUAL_BUILDS: Send a separate status report for each individual build.

§
combineArtifacts?: boolean | null
[src]

Specifies if the build artifacts for the batch build should be combined into a single artifact location.

§
restrictions?: BatchRestrictions | null
[src]

A BatchRestrictions object that specifies the restrictions for the batch build.

§
serviceRole?: string | null
[src]

Specifies the service role ARN for the batch build project.

§
timeoutInMins?: number | null
[src]

Specifies the maximum amount of time, in minutes, that the batch build must be completed in.