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:StartCommandExecution` — runs a shell * command in a running sandbox of the bound project. Poll the result with * {@link BatchGetCommandExecutions}. * ### Sandboxes * **Example:** Run a Command in a Sandbox * ```typescript * const startCommandExecution = yield* AWS.CodeBuild.StartCommandExecution(project); * * const { commandExecution } = yield* startCommandExecution({ * sandboxId, * command: "echo hello", * }); * ``` * * @binding */ export interface StartCommandExecution extends Binding.Service(project: P) => Effect.Effect<(request: SVC.StartCommandExecutionInput) => Effect.Effect>> { } export declare const StartCommandExecution: StartCommandExecution; //# sourceMappingURL=StartCommandExecution.d.ts.map