import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import type { DeleteBuildBatchInput, DeleteBuildBatchOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteBuildBatchCommand}. */ export interface DeleteBuildBatchCommandInput extends DeleteBuildBatchInput { } /** * @public * * The output of {@link DeleteBuildBatchCommand}. */ export interface DeleteBuildBatchCommandOutput extends DeleteBuildBatchOutput, __MetadataBearer { } declare const DeleteBuildBatchCommand_base: { new (input: DeleteBuildBatchCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteBuildBatchCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes a batch build.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CodeBuildClient, DeleteBuildBatchCommand } from "@aws-sdk/client-codebuild"; // ES Modules import * // const { CodeBuildClient, DeleteBuildBatchCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import * // import type { CodeBuildClientConfig } from "@aws-sdk/client-codebuild"; * const config = {}; // type is CodeBuildClientConfig * const client = new CodeBuildClient(config); * const input = { // DeleteBuildBatchInput * id: "STRING_VALUE", // required * }; * const command = new DeleteBuildBatchCommand(input); * const response = await client.send(command); * // { // DeleteBuildBatchOutput * // statusCode: "STRING_VALUE", * // buildsDeleted: [ // BuildIds * // "STRING_VALUE", * // ], * // buildsNotDeleted: [ // BuildsNotDeleted * // { // BuildNotDeleted * // id: "STRING_VALUE", * // statusCode: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param DeleteBuildBatchCommandInput - {@link DeleteBuildBatchCommandInput} * @returns {@link DeleteBuildBatchCommandOutput} * @see {@link DeleteBuildBatchCommandInput} for command's `input` shape. * @see {@link DeleteBuildBatchCommandOutput} for command's `response` shape. * @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape. * * @throws {@link InvalidInputException} (client fault) *

The input value that was provided is not valid.

* * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* * * @public */ export declare class DeleteBuildBatchCommand extends DeleteBuildBatchCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteBuildBatchInput; output: DeleteBuildBatchOutput; }; sdk: { input: DeleteBuildBatchCommandInput; output: DeleteBuildBatchCommandOutput; }; }; }