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 { DeleteAuditSuppressionRequest, DeleteAuditSuppressionResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteAuditSuppressionCommand}. */ export interface DeleteAuditSuppressionCommandInput extends DeleteAuditSuppressionRequest { } /** * @public * * The output of {@link DeleteAuditSuppressionCommand}. */ export interface DeleteAuditSuppressionCommandOutput extends DeleteAuditSuppressionResponse, __MetadataBearer { } declare const DeleteAuditSuppressionCommand_base: { new (input: DeleteAuditSuppressionCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteAuditSuppressionCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

* Deletes a Device Defender audit suppression. *

*

Requires permission to access the DeleteAuditSuppression action.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTClient, DeleteAuditSuppressionCommand } from "@aws-sdk/client-iot"; // ES Modules import * // const { IoTClient, DeleteAuditSuppressionCommand } = 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 = { // DeleteAuditSuppressionRequest * checkName: "STRING_VALUE", // required * resourceIdentifier: { // ResourceIdentifier * deviceCertificateId: "STRING_VALUE", * caCertificateId: "STRING_VALUE", * cognitoIdentityPoolId: "STRING_VALUE", * clientId: "STRING_VALUE", * policyVersionIdentifier: { // PolicyVersionIdentifier * policyName: "STRING_VALUE", * policyVersionId: "STRING_VALUE", * }, * account: "STRING_VALUE", * iamRoleArn: "STRING_VALUE", * roleAliasArn: "STRING_VALUE", * issuerCertificateIdentifier: { // IssuerCertificateIdentifier * issuerCertificateSubject: "STRING_VALUE", * issuerId: "STRING_VALUE", * issuerCertificateSerialNumber: "STRING_VALUE", * }, * deviceCertificateArn: "STRING_VALUE", * }, * }; * const command = new DeleteAuditSuppressionCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteAuditSuppressionCommandInput - {@link DeleteAuditSuppressionCommandInput} * @returns {@link DeleteAuditSuppressionCommandOutput} * @see {@link DeleteAuditSuppressionCommandInput} for command's `input` shape. * @see {@link DeleteAuditSuppressionCommandOutput} 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 IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* * * @public */ export declare class DeleteAuditSuppressionCommand extends DeleteAuditSuppressionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteAuditSuppressionRequest; output: {}; }; sdk: { input: DeleteAuditSuppressionCommandInput; output: DeleteAuditSuppressionCommandOutput; }; }; }