import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeExportTasksRequest, DescribeExportTasksResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeExportTasksCommand}. */ export interface DescribeExportTasksCommandInput extends DescribeExportTasksRequest { } /** * @public * * The output of {@link DescribeExportTasksCommand}. */ export interface DescribeExportTasksCommandOutput extends DescribeExportTasksResponse, __MetadataBearer { } declare const DescribeExportTasksCommand_base: { new (input: DescribeExportTasksCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeExportTasksCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieve status of one or more export tasks. You can retrieve the status of up to 100 * export tasks.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationDiscoveryServiceClient, DescribeExportTasksCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import * // const { ApplicationDiscoveryServiceClient, DescribeExportTasksCommand } = 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 = { // DescribeExportTasksRequest * exportIds: [ // ExportIds * "STRING_VALUE", * ], * filters: [ // ExportFilters * { // ExportFilter * name: "STRING_VALUE", // required * values: [ // FilterValues // required * "STRING_VALUE", * ], * condition: "STRING_VALUE", // required * }, * ], * maxResults: Number("int"), * nextToken: "STRING_VALUE", * }; * const command = new DescribeExportTasksCommand(input); * const response = await client.send(command); * // { // DescribeExportTasksResponse * // exportsInfo: [ // ExportsInfo * // { // ExportInfo * // exportId: "STRING_VALUE", // required * // exportStatus: "FAILED" || "SUCCEEDED" || "IN_PROGRESS", // required * // statusMessage: "STRING_VALUE", // required * // configurationsDownloadUrl: "STRING_VALUE", * // exportRequestTime: new Date("TIMESTAMP"), // required * // isTruncated: true || false, * // requestedStartTime: new Date("TIMESTAMP"), * // requestedEndTime: new Date("TIMESTAMP"), * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeExportTasksCommandInput - {@link DescribeExportTasksCommandInput} * @returns {@link DescribeExportTasksCommandOutput} * @see {@link DescribeExportTasksCommandInput} for command's `input` shape. * @see {@link DescribeExportTasksCommandOutput} 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 InvalidParameterException} (client fault) *

One or more parameters are not valid. Verify the parameters and try again.

* * @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 DescribeExportTasksCommand extends DescribeExportTasksCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeExportTasksRequest; output: DescribeExportTasksResponse; }; sdk: { input: DescribeExportTasksCommandInput; output: DescribeExportTasksCommandOutput; }; }; }