import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import type { DeletePipelineInput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeletePipelineCommand}. */ export interface DeletePipelineCommandInput extends DeletePipelineInput { } /** * @public * * The output of {@link DeletePipelineCommand}. */ export interface DeletePipelineCommandOutput extends __MetadataBearer { } declare const DeletePipelineCommand_base: { new (input: DeletePipelineCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeletePipelineCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes the specified pipeline.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CodePipelineClient, DeletePipelineCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import * // const { CodePipelineClient, DeletePipelineCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import * // import type { CodePipelineClientConfig } from "@aws-sdk/client-codepipeline"; * const config = {}; // type is CodePipelineClientConfig * const client = new CodePipelineClient(config); * const input = { // DeletePipelineInput * name: "STRING_VALUE", // required * }; * const command = new DeletePipelineCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeletePipelineCommandInput - {@link DeletePipelineCommandInput} * @returns {@link DeletePipelineCommandOutput} * @see {@link DeletePipelineCommandInput} for command's `input` shape. * @see {@link DeletePipelineCommandOutput} for command's `response` shape. * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape. * * @throws {@link ConcurrentModificationException} (client fault) *

Unable to modify the tag due to a simultaneous update request.

* * @throws {@link ValidationException} (client fault) *

The validation was specified in an invalid format.

* * @throws {@link CodePipelineServiceException} *

Base exception class for all service exceptions from CodePipeline service.

* * * @public */ export declare class DeletePipelineCommand extends DeletePipelineCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeletePipelineInput; output: {}; }; sdk: { input: DeletePipelineCommandInput; output: DeletePipelineCommandOutput; }; }; }