import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { DescribeInventoryDeletionsRequest, DescribeInventoryDeletionsResult } from "../models/models_0"; import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeInventoryDeletionsCommand}. */ export interface DescribeInventoryDeletionsCommandInput extends DescribeInventoryDeletionsRequest { } /** * @public * * The output of {@link DescribeInventoryDeletionsCommand}. */ export interface DescribeInventoryDeletionsCommandOutput extends DescribeInventoryDeletionsResult, __MetadataBearer { } declare const DescribeInventoryDeletionsCommand_base: { new (input: DescribeInventoryDeletionsCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeInventoryDeletionsCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Describes a specific delete inventory operation.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMClient, DescribeInventoryDeletionsCommand } from "@aws-sdk/client-ssm"; // ES Modules import * // const { SSMClient, DescribeInventoryDeletionsCommand } = require("@aws-sdk/client-ssm"); // CommonJS import * const client = new SSMClient(config); * const input = { // DescribeInventoryDeletionsRequest * DeletionId: "STRING_VALUE", * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new DescribeInventoryDeletionsCommand(input); * const response = await client.send(command); * // { // DescribeInventoryDeletionsResult * // InventoryDeletions: [ // InventoryDeletionsList * // { // InventoryDeletionStatusItem * // DeletionId: "STRING_VALUE", * // TypeName: "STRING_VALUE", * // DeletionStartTime: new Date("TIMESTAMP"), * // LastStatus: "InProgress" || "Complete", * // LastStatusMessage: "STRING_VALUE", * // DeletionSummary: { // InventoryDeletionSummary * // TotalCount: Number("int"), * // RemainingCount: Number("int"), * // SummaryItems: [ // InventoryDeletionSummaryItems * // { // InventoryDeletionSummaryItem * // Version: "STRING_VALUE", * // Count: Number("int"), * // RemainingCount: Number("int"), * // }, * // ], * // }, * // LastStatusUpdateTime: new Date("TIMESTAMP"), * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeInventoryDeletionsCommandInput - {@link DescribeInventoryDeletionsCommandInput} * @returns {@link DescribeInventoryDeletionsCommandOutput} * @see {@link DescribeInventoryDeletionsCommandInput} for command's `input` shape. * @see {@link DescribeInventoryDeletionsCommandOutput} for command's `response` shape. * @see {@link SSMClientResolvedConfig | config} for SSMClient's `config` shape. * * @throws {@link InternalServerError} (server fault) *

An error occurred on the server side.

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

The ID specified for the delete operation doesn't exist or isn't valid. Verify the ID and * try again.

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

The specified token isn't valid.

* * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* * * @public */ export declare class DescribeInventoryDeletionsCommand extends DescribeInventoryDeletionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeInventoryDeletionsRequest; output: DescribeInventoryDeletionsResult; }; sdk: { input: DescribeInventoryDeletionsCommandInput; output: DescribeInventoryDeletionsCommandOutput; }; }; }