import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeDatasetCommand}. */ export interface DescribeDatasetCommandInput extends DescribeDatasetRequest { } /** * @public * * The output of {@link DescribeDatasetCommand}. */ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, __MetadataBearer { } declare const DescribeDatasetCommand_base: { new (input: DescribeDatasetCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeDatasetCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Describes an Amazon Forecast dataset created using the CreateDataset operation.

*

In addition to listing the parameters specified in the CreateDataset request, * this operation includes the following dataset properties:

* * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ForecastClient, DescribeDatasetCommand } from "@aws-sdk/client-forecast"; // ES Modules import * // const { ForecastClient, DescribeDatasetCommand } = 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 = { // DescribeDatasetRequest * DatasetArn: "STRING_VALUE", // required * }; * const command = new DescribeDatasetCommand(input); * const response = await client.send(command); * // { // DescribeDatasetResponse * // DatasetArn: "STRING_VALUE", * // DatasetName: "STRING_VALUE", * // Domain: "RETAIL" || "CUSTOM" || "INVENTORY_PLANNING" || "EC2_CAPACITY" || "WORK_FORCE" || "WEB_TRAFFIC" || "METRICS", * // DatasetType: "TARGET_TIME_SERIES" || "RELATED_TIME_SERIES" || "ITEM_METADATA", * // DataFrequency: "STRING_VALUE", * // Schema: { // Schema * // Attributes: [ // SchemaAttributes * // { // SchemaAttribute * // AttributeName: "STRING_VALUE", * // AttributeType: "string" || "integer" || "float" || "timestamp" || "geolocation", * // }, * // ], * // }, * // EncryptionConfig: { // EncryptionConfig * // RoleArn: "STRING_VALUE", // required * // KMSKeyArn: "STRING_VALUE", // required * // }, * // Status: "STRING_VALUE", * // CreationTime: new Date("TIMESTAMP"), * // LastModificationTime: new Date("TIMESTAMP"), * // }; * * ``` * * @param DescribeDatasetCommandInput - {@link DescribeDatasetCommandInput} * @returns {@link DescribeDatasetCommandOutput} * @see {@link DescribeDatasetCommandInput} for command's `input` shape. * @see {@link DescribeDatasetCommandOutput} 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 DescribeDatasetCommand extends DescribeDatasetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeDatasetRequest; output: DescribeDatasetResponse; }; sdk: { input: DescribeDatasetCommandInput; output: DescribeDatasetCommandOutput; }; }; }