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 { DescribeAuditSuppressionRequest, DescribeAuditSuppressionResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeAuditSuppressionCommand}. */ export interface DescribeAuditSuppressionCommandInput extends DescribeAuditSuppressionRequest { } /** * @public * * The output of {@link DescribeAuditSuppressionCommand}. */ export interface DescribeAuditSuppressionCommandOutput extends DescribeAuditSuppressionResponse, __MetadataBearer { } declare const DescribeAuditSuppressionCommand_base: { new (input: DescribeAuditSuppressionCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeAuditSuppressionCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

* Gets information about a Device Defender audit suppression. *

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTClient, DescribeAuditSuppressionCommand } from "@aws-sdk/client-iot"; // ES Modules import * // const { IoTClient, DescribeAuditSuppressionCommand } = 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 = { // DescribeAuditSuppressionRequest * 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 DescribeAuditSuppressionCommand(input); * const response = await client.send(command); * // { // DescribeAuditSuppressionResponse * // checkName: "STRING_VALUE", * // 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", * // }, * // expirationDate: new Date("TIMESTAMP"), * // suppressIndefinitely: true || false, * // description: "STRING_VALUE", * // }; * * ``` * * @param DescribeAuditSuppressionCommandInput - {@link DescribeAuditSuppressionCommandInput} * @returns {@link DescribeAuditSuppressionCommandOutput} * @see {@link DescribeAuditSuppressionCommandInput} for command's `input` shape. * @see {@link DescribeAuditSuppressionCommandOutput} 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 ResourceNotFoundException} (client fault) *

The specified resource does not exist.

* * @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 DescribeAuditSuppressionCommand extends DescribeAuditSuppressionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeAuditSuppressionRequest; output: DescribeAuditSuppressionResponse; }; sdk: { input: DescribeAuditSuppressionCommandInput; output: DescribeAuditSuppressionCommandOutput; }; }; }