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:ListCommandExecutionsForSandbox` — lists * the command executions run in a sandbox of the bound project. * ### Sandboxes * **Example:** List Command Executions * ```typescript * const listCommandExecutions = yield* AWS.CodeBuild.ListCommandExecutionsForSandbox(project); * * const { commandExecutions } = yield* listCommandExecutions({ sandboxId }); * ``` * * @binding */ export interface ListCommandExecutionsForSandbox extends Binding.Service(project: P) => Effect.Effect<(request: SVC.ListCommandExecutionsForSandboxInput) => Effect.Effect>> { } export declare const ListCommandExecutionsForSandbox: ListCommandExecutionsForSandbox; //# sourceMappingURL=ListCommandExecutionsForSandbox.d.ts.map