import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeMonitorRequest, DescribeMonitorResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeMonitorCommand}. */ export interface DescribeMonitorCommandInput extends DescribeMonitorRequest { } /** * @public * * The output of {@link DescribeMonitorCommand}. */ export interface DescribeMonitorCommandOutput extends DescribeMonitorResponse, __MetadataBearer { } declare const DescribeMonitorCommand_base: { new (input: DescribeMonitorCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeMonitorCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Describes a monitor resource. In addition to listing the properties provided in the CreateMonitor request, this operation lists the following properties:

* * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ForecastClient, DescribeMonitorCommand } from "@aws-sdk/client-forecast"; // ES Modules import * // const { ForecastClient, DescribeMonitorCommand } = 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 = { // DescribeMonitorRequest * MonitorArn: "STRING_VALUE", // required * }; * const command = new DescribeMonitorCommand(input); * const response = await client.send(command); * // { // DescribeMonitorResponse * // MonitorName: "STRING_VALUE", * // MonitorArn: "STRING_VALUE", * // ResourceArn: "STRING_VALUE", * // Status: "STRING_VALUE", * // LastEvaluationTime: new Date("TIMESTAMP"), * // LastEvaluationState: "STRING_VALUE", * // Baseline: { // Baseline * // PredictorBaseline: { // PredictorBaseline * // BaselineMetrics: [ // BaselineMetrics * // { // BaselineMetric * // Name: "STRING_VALUE", * // Value: Number("double"), * // }, * // ], * // }, * // }, * // Message: "STRING_VALUE", * // CreationTime: new Date("TIMESTAMP"), * // LastModificationTime: new Date("TIMESTAMP"), * // EstimatedEvaluationTimeRemainingInMinutes: Number("long"), * // }; * * ``` * * @param DescribeMonitorCommandInput - {@link DescribeMonitorCommandInput} * @returns {@link DescribeMonitorCommandOutput} * @see {@link DescribeMonitorCommandInput} for command's `input` shape. * @see {@link DescribeMonitorCommandOutput} 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 DescribeMonitorCommand extends DescribeMonitorCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeMonitorRequest; output: DescribeMonitorResponse; }; sdk: { input: DescribeMonitorCommandInput; output: DescribeMonitorCommandOutput; }; }; }