import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; import type { DeleteSecurityProfileRequest, DeleteSecurityProfileResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteSecurityProfileCommand}. */ export interface DeleteSecurityProfileCommandInput extends DeleteSecurityProfileRequest { } /** * @public * * The output of {@link DeleteSecurityProfileCommand}. */ export interface DeleteSecurityProfileCommandOutput extends DeleteSecurityProfileResponse, __MetadataBearer { } declare const DeleteSecurityProfileCommand_base: { new (input: DeleteSecurityProfileCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteSecurityProfileCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Deletes a Device Defender security profile.

*

Requires permission to access the DeleteSecurityProfile action.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTClient, DeleteSecurityProfileCommand } from "@aws-sdk/client-iot"; // ES Modules import * // const { IoTClient, DeleteSecurityProfileCommand } = require("@aws-sdk/client-iot"); // CommonJS import * // import type { IoTClientConfig } from "@aws-sdk/client-iot"; * const config = {}; // type is IoTClientConfig * const client = new IoTClient(config); * const input = { // DeleteSecurityProfileRequest * securityProfileName: "STRING_VALUE", // required * expectedVersion: Number("long"), * }; * const command = new DeleteSecurityProfileCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteSecurityProfileCommandInput - {@link DeleteSecurityProfileCommandInput} * @returns {@link DeleteSecurityProfileCommandOutput} * @see {@link DeleteSecurityProfileCommandInput} for command's `input` shape. * @see {@link DeleteSecurityProfileCommandOutput} for command's `response` shape. * @see {@link IoTClientResolvedConfig | config} for IoTClient's `config` shape. * * @throws {@link InternalFailureException} (server fault) *

An unexpected error has occurred.

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

The request is not valid.

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

The rate exceeds the limit.

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

An exception thrown when the version of an entity specified with the * expectedVersion parameter does not match the latest version in the * system.

* * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* * * @public */ export declare class DeleteSecurityProfileCommand extends DeleteSecurityProfileCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteSecurityProfileRequest; output: {}; }; sdk: { input: DeleteSecurityProfileCommandInput; output: DeleteSecurityProfileCommandOutput; }; }; }