import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeExplainabilityExportRequest, DescribeExplainabilityExportResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeExplainabilityExportCommand}. */ export interface DescribeExplainabilityExportCommandInput extends DescribeExplainabilityExportRequest { } /** * @public * * The output of {@link DescribeExplainabilityExportCommand}. */ export interface DescribeExplainabilityExportCommandOutput extends DescribeExplainabilityExportResponse, __MetadataBearer { } declare const DescribeExplainabilityExportCommand_base: { new (input: DescribeExplainabilityExportCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeExplainabilityExportCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Describes an Explainability export created using the CreateExplainabilityExport operation.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ForecastClient, DescribeExplainabilityExportCommand } from "@aws-sdk/client-forecast"; // ES Modules import * // const { ForecastClient, DescribeExplainabilityExportCommand } = require("@aws-sdk/client-forecast"); // CommonJS import * // import type { ForecastClientConfig } from "@aws-sdk/client-forecast"; * const config = {}; // type is ForecastClientConfig * const client = new ForecastClient(config); * const input = { // DescribeExplainabilityExportRequest * ExplainabilityExportArn: "STRING_VALUE", // required * }; * const command = new DescribeExplainabilityExportCommand(input); * const response = await client.send(command); * // { // DescribeExplainabilityExportResponse * // ExplainabilityExportArn: "STRING_VALUE", * // ExplainabilityExportName: "STRING_VALUE", * // ExplainabilityArn: "STRING_VALUE", * // Destination: { // DataDestination * // S3Config: { // S3Config * // Path: "STRING_VALUE", // required * // RoleArn: "STRING_VALUE", // required * // KMSKeyArn: "STRING_VALUE", * // }, * // }, * // Message: "STRING_VALUE", * // Status: "STRING_VALUE", * // CreationTime: new Date("TIMESTAMP"), * // LastModificationTime: new Date("TIMESTAMP"), * // Format: "STRING_VALUE", * // }; * * ``` * * @param DescribeExplainabilityExportCommandInput - {@link DescribeExplainabilityExportCommandInput} * @returns {@link DescribeExplainabilityExportCommandOutput} * @see {@link DescribeExplainabilityExportCommandInput} for command's `input` shape. * @see {@link DescribeExplainabilityExportCommandOutput} for command's `response` shape. * @see {@link ForecastClientResolvedConfig | config} for ForecastClient's `config` shape. * * @throws {@link InvalidInputException} (client fault) *

We can't process the request because it includes an invalid value or a value that exceeds * the valid range.

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

We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try * again.

* * @throws {@link ForecastServiceException} *

Base exception class for all service exceptions from Forecast service.

* * * @public */ export declare class DescribeExplainabilityExportCommand extends DescribeExplainabilityExportCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeExplainabilityExportRequest; output: DescribeExplainabilityExportResponse; }; sdk: { input: DescribeExplainabilityExportCommandInput; output: DescribeExplainabilityExportCommandOutput; }; }; }