import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeExplainabilityRequest, DescribeExplainabilityResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeExplainabilityCommand}. */ export interface DescribeExplainabilityCommandInput extends DescribeExplainabilityRequest { } /** * @public * * The output of {@link DescribeExplainabilityCommand}. */ export interface DescribeExplainabilityCommandOutput extends DescribeExplainabilityResponse, __MetadataBearer { } declare const DescribeExplainabilityCommand_base: { new (input: DescribeExplainabilityCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeExplainabilityCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Describes an Explainability resource created using the CreateExplainability operation.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ForecastClient, DescribeExplainabilityCommand } from "@aws-sdk/client-forecast"; // ES Modules import * // const { ForecastClient, DescribeExplainabilityCommand } = 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 = { // DescribeExplainabilityRequest * ExplainabilityArn: "STRING_VALUE", // required * }; * const command = new DescribeExplainabilityCommand(input); * const response = await client.send(command); * // { // DescribeExplainabilityResponse * // ExplainabilityArn: "STRING_VALUE", * // ExplainabilityName: "STRING_VALUE", * // ResourceArn: "STRING_VALUE", * // ExplainabilityConfig: { // ExplainabilityConfig * // TimeSeriesGranularity: "ALL" || "SPECIFIC", // required * // TimePointGranularity: "ALL" || "SPECIFIC", // required * // }, * // EnableVisualization: true || false, * // DataSource: { // DataSource * // S3Config: { // S3Config * // Path: "STRING_VALUE", // required * // RoleArn: "STRING_VALUE", // required * // KMSKeyArn: "STRING_VALUE", * // }, * // }, * // Schema: { // Schema * // Attributes: [ // SchemaAttributes * // { // SchemaAttribute * // AttributeName: "STRING_VALUE", * // AttributeType: "string" || "integer" || "float" || "timestamp" || "geolocation", * // }, * // ], * // }, * // StartDateTime: "STRING_VALUE", * // EndDateTime: "STRING_VALUE", * // EstimatedTimeRemainingInMinutes: Number("long"), * // Message: "STRING_VALUE", * // Status: "STRING_VALUE", * // CreationTime: new Date("TIMESTAMP"), * // LastModificationTime: new Date("TIMESTAMP"), * // }; * * ``` * * @param DescribeExplainabilityCommandInput - {@link DescribeExplainabilityCommandInput} * @returns {@link DescribeExplainabilityCommandOutput} * @see {@link DescribeExplainabilityCommandInput} for command's `input` shape. * @see {@link DescribeExplainabilityCommandOutput} 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 DescribeExplainabilityCommand extends DescribeExplainabilityCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeExplainabilityRequest; output: DescribeExplainabilityResponse; }; sdk: { input: DescribeExplainabilityCommandInput; output: DescribeExplainabilityCommandOutput; }; }; }