import type * as SVC from "@distilled.cloud/aws/codebuild"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Project } from "./Project.ts"; /** * Runtime binding for `codebuild:StartBuildBatch` — kicks off a batch * (fan-out) build of the bound project. The project must have a build batch * configuration and the buildspec a `batch:` section. * ### Batch Builds * **Example:** Start a Batch Build * ```typescript * const startBuildBatch = yield* AWS.CodeBuild.StartBuildBatch(project); * * const { buildBatch } = yield* startBuildBatch(); * ``` * * @binding */ export interface StartBuildBatch extends Binding.Service(project: P) => Effect.Effect<(request?: Omit) => Effect.Effect>> { } export declare const StartBuildBatch: StartBuildBatch; //# sourceMappingURL=StartBuildBatch.d.ts.map