import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeBatchDeleteConfigurationTaskRequest, DescribeBatchDeleteConfigurationTaskResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeBatchDeleteConfigurationTaskCommand}. */ export interface DescribeBatchDeleteConfigurationTaskCommandInput extends DescribeBatchDeleteConfigurationTaskRequest { } /** * @public * * The output of {@link DescribeBatchDeleteConfigurationTaskCommand}. */ export interface DescribeBatchDeleteConfigurationTaskCommandOutput extends DescribeBatchDeleteConfigurationTaskResponse, __MetadataBearer { } declare const DescribeBatchDeleteConfigurationTaskCommand_base: { new (input: DescribeBatchDeleteConfigurationTaskCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeBatchDeleteConfigurationTaskCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

* Takes a unique deletion task identifier as input and returns metadata about a configuration deletion task.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationDiscoveryServiceClient, DescribeBatchDeleteConfigurationTaskCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import * // const { ApplicationDiscoveryServiceClient, DescribeBatchDeleteConfigurationTaskCommand } = require("@aws-sdk/client-application-discovery-service"); // CommonJS import * // import type { ApplicationDiscoveryServiceClientConfig } from "@aws-sdk/client-application-discovery-service"; * const config = {}; // type is ApplicationDiscoveryServiceClientConfig * const client = new ApplicationDiscoveryServiceClient(config); * const input = { // DescribeBatchDeleteConfigurationTaskRequest * taskId: "STRING_VALUE", // required * }; * const command = new DescribeBatchDeleteConfigurationTaskCommand(input); * const response = await client.send(command); * // { // DescribeBatchDeleteConfigurationTaskResponse * // task: { // BatchDeleteConfigurationTask * // taskId: "STRING_VALUE", * // status: "INITIALIZING" || "VALIDATING" || "DELETING" || "COMPLETED" || "FAILED", * // startTime: new Date("TIMESTAMP"), * // endTime: new Date("TIMESTAMP"), * // configurationType: "SERVER", * // requestedConfigurations: [ // ConfigurationIdList * // "STRING_VALUE", * // ], * // deletedConfigurations: [ * // "STRING_VALUE", * // ], * // failedConfigurations: [ // FailedConfigurationList * // { // FailedConfiguration * // configurationId: "STRING_VALUE", * // errorStatusCode: Number("int"), * // errorMessage: "STRING_VALUE", * // }, * // ], * // deletionWarnings: [ // DeletionWarningsList * // { // DeletionWarning * // configurationId: "STRING_VALUE", * // warningCode: Number("int"), * // warningText: "STRING_VALUE", * // }, * // ], * // }, * // }; * * ``` * * @param DescribeBatchDeleteConfigurationTaskCommandInput - {@link DescribeBatchDeleteConfigurationTaskCommandInput} * @returns {@link DescribeBatchDeleteConfigurationTaskCommandOutput} * @see {@link DescribeBatchDeleteConfigurationTaskCommandInput} for command's `input` shape. * @see {@link DescribeBatchDeleteConfigurationTaskCommandOutput} for command's `response` shape. * @see {@link ApplicationDiscoveryServiceClientResolvedConfig | config} for ApplicationDiscoveryServiceClient's `config` shape. * * @throws {@link AuthorizationErrorException} (client fault) *

The user does not have permission to perform the action. Check the IAM * policy associated with this user.

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

The home Region is not set. Set the home Region to continue.

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

The value of one or more parameters are either invalid or out of range. Verify the * parameter values and try again.

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

The server experienced an internal error. Try again.

* * @throws {@link ApplicationDiscoveryServiceServiceException} *

Base exception class for all service exceptions from ApplicationDiscoveryService service.

* * * @public */ export declare class DescribeBatchDeleteConfigurationTaskCommand extends DescribeBatchDeleteConfigurationTaskCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeBatchDeleteConfigurationTaskRequest; output: DescribeBatchDeleteConfigurationTaskResponse; }; sdk: { input: DescribeBatchDeleteConfigurationTaskCommandInput; output: DescribeBatchDeleteConfigurationTaskCommandOutput; }; }; }