import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeExportConfigurationsRequest, DescribeExportConfigurationsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeExportConfigurationsCommand}. */ export interface DescribeExportConfigurationsCommandInput extends DescribeExportConfigurationsRequest { } /** * @public * * The output of {@link DescribeExportConfigurationsCommand}. */ export interface DescribeExportConfigurationsCommandOutput extends DescribeExportConfigurationsResponse, __MetadataBearer { } declare const DescribeExportConfigurationsCommand_base: { new (input: DescribeExportConfigurationsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeExportConfigurationsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

* DescribeExportConfigurations is deprecated. Use DescribeExportTasks, instead.

* * @deprecated deprecated. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationDiscoveryServiceClient, DescribeExportConfigurationsCommand } from "@aws-sdk/client-application-discovery-service"; // ES Modules import * // const { ApplicationDiscoveryServiceClient, DescribeExportConfigurationsCommand } = 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 = { // DescribeExportConfigurationsRequest * exportIds: [ // ExportIds * "STRING_VALUE", * ], * maxResults: Number("int"), * nextToken: "STRING_VALUE", * }; * const command = new DescribeExportConfigurationsCommand(input); * const response = await client.send(command); * // { // DescribeExportConfigurationsResponse * // 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 DescribeExportConfigurationsCommandInput - {@link DescribeExportConfigurationsCommandInput} * @returns {@link DescribeExportConfigurationsCommandOutput} * @see {@link DescribeExportConfigurationsCommandInput} for command's `input` shape. * @see {@link DescribeExportConfigurationsCommandOutput} 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 ResourceNotFoundException} (client fault) *

The specified configuration ID was not located. Verify the configuration ID 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 DescribeExportConfigurationsCommand extends DescribeExportConfigurationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeExportConfigurationsRequest; output: DescribeExportConfigurationsResponse; }; sdk: { input: DescribeExportConfigurationsCommandInput; output: DescribeExportConfigurationsCommandOutput; }; }; }