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 { DeleteFleetInput, DeleteFleetOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteFleetCommand}. */ export interface DeleteFleetCommandInput extends DeleteFleetInput { } /** * @public * * The output of {@link DeleteFleetCommand}. */ export interface DeleteFleetCommandOutput extends DeleteFleetOutput, __MetadataBearer { } declare const DeleteFleetCommand_base: { new (input: DeleteFleetCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteFleetCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes a compute fleet. When you delete a compute fleet, its builds are not deleted.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CodeBuildClient, DeleteFleetCommand } from "@aws-sdk/client-codebuild"; // ES Modules import * // const { CodeBuildClient, DeleteFleetCommand } = 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 = { // DeleteFleetInput * arn: "STRING_VALUE", // required * }; * const command = new DeleteFleetCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteFleetCommandInput - {@link DeleteFleetCommandInput} * @returns {@link DeleteFleetCommandOutput} * @see {@link DeleteFleetCommandInput} for command's `input` shape. * @see {@link DeleteFleetCommandOutput} 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 DeleteFleetCommand extends DeleteFleetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteFleetInput; output: {}; }; sdk: { input: DeleteFleetCommandInput; output: DeleteFleetCommandOutput; }; }; }