import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeExclusionsRequest, DescribeExclusionsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeExclusionsCommand}. */ export interface DescribeExclusionsCommandInput extends DescribeExclusionsRequest { } /** * @public * * The output of {@link DescribeExclusionsCommand}. */ export interface DescribeExclusionsCommandOutput extends DescribeExclusionsResponse, __MetadataBearer { } declare const DescribeExclusionsCommand_base: { new (input: DescribeExclusionsCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeExclusionsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Describes the exclusions that are specified by the exclusions' ARNs.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { InspectorClient, DescribeExclusionsCommand } from "@aws-sdk/client-inspector"; // ES Modules import * // const { InspectorClient, DescribeExclusionsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector"; * const config = {}; // type is InspectorClientConfig * const client = new InspectorClient(config); * const input = { // DescribeExclusionsRequest * exclusionArns: [ // BatchDescribeExclusionsArnList // required * "STRING_VALUE", * ], * locale: "EN_US", * }; * const command = new DescribeExclusionsCommand(input); * const response = await client.send(command); * // { // DescribeExclusionsResponse * // exclusions: { // ExclusionMap // required * // "": { // Exclusion * // arn: "STRING_VALUE", // required * // title: "STRING_VALUE", // required * // description: "STRING_VALUE", // required * // recommendation: "STRING_VALUE", // required * // scopes: [ // ScopeList // required * // { // Scope * // key: "INSTANCE_ID" || "RULES_PACKAGE_ARN", * // value: "STRING_VALUE", * // }, * // ], * // attributes: [ // AttributeList * // { // Attribute * // key: "STRING_VALUE", // required * // value: "STRING_VALUE", * // }, * // ], * // }, * // }, * // failedItems: { // FailedItems // required * // "": { // FailedItemDetails * // failureCode: "INVALID_ARN" || "DUPLICATE_ARN" || "ITEM_DOES_NOT_EXIST" || "ACCESS_DENIED" || "LIMIT_EXCEEDED" || "INTERNAL_ERROR", // required * // retryable: true || false, // required * // }, * // }, * // }; * * ``` * * @param DescribeExclusionsCommandInput - {@link DescribeExclusionsCommandInput} * @returns {@link DescribeExclusionsCommandOutput} * @see {@link DescribeExclusionsCommandInput} for command's `input` shape. * @see {@link DescribeExclusionsCommandOutput} for command's `response` shape. * @see {@link InspectorClientResolvedConfig | config} for InspectorClient's `config` shape. * * @throws {@link InternalException} (server fault) *

Internal server error.

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

The request was rejected because an invalid or out-of-range value was supplied for an * input parameter.

* * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* * * @public */ export declare class DescribeExclusionsCommand extends DescribeExclusionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeExclusionsRequest; output: DescribeExclusionsResponse; }; sdk: { input: DescribeExclusionsCommandInput; output: DescribeExclusionsCommandOutput; }; }; }