import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteFleetRequest, DeleteFleetResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteFleetCommand}. */ export interface DeleteFleetCommandInput extends DeleteFleetRequest { } /** * @public * * The output of {@link DeleteFleetCommand}. */ export interface DeleteFleetCommandOutput extends DeleteFleetResponse, __MetadataBearer { } declare const DeleteFleetCommand_base: { new (input: DeleteFleetCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteFleetCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes a fleet. Before you delete a fleet, all vehicles must be * dissociated from the fleet. For more information, see Delete a fleet (AWS * CLI) in the Amazon Web Services IoT FleetWise Developer Guide.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTFleetWiseClient, DeleteFleetCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import * // const { IoTFleetWiseClient, DeleteFleetCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import * // import type { IoTFleetWiseClientConfig } from "@aws-sdk/client-iotfleetwise"; * const config = {}; // type is IoTFleetWiseClientConfig * const client = new IoTFleetWiseClient(config); * const input = { // DeleteFleetRequest * fleetId: "STRING_VALUE", // required * }; * const command = new DeleteFleetCommand(input); * const response = await client.send(command); * // { // DeleteFleetResponse * // id: "STRING_VALUE", * // arn: "STRING_VALUE", * // }; * * ``` * * @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 IoTFleetWiseClientResolvedConfig | config} for IoTFleetWiseClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have sufficient permission to perform this action.

* * @throws {@link InternalServerException} (server fault) *

The request couldn't be completed because the server temporarily failed.

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

The request couldn't be completed due to throttling.

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

The input fails to satisfy the constraints specified by an Amazon Web Services service.

* * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* * * @public */ export declare class DeleteFleetCommand extends DeleteFleetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteFleetRequest; output: DeleteFleetResponse; }; sdk: { input: DeleteFleetCommandInput; output: DeleteFleetCommandOutput; }; }; }