import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; import type { DescribeInputRequest, DescribeInputResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeInputCommand}. */ export interface DescribeInputCommandInput extends DescribeInputRequest { } /** * @public * * The output of {@link DescribeInputCommand}. */ export interface DescribeInputCommandOutput extends DescribeInputResponse, __MetadataBearer { } declare const DescribeInputCommand_base: { new (input: DescribeInputCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeInputCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Describes an input.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTEventsClient, DescribeInputCommand } from "@aws-sdk/client-iot-events"; // ES Modules import * // const { IoTEventsClient, DescribeInputCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import * // import type { IoTEventsClientConfig } from "@aws-sdk/client-iot-events"; * const config = {}; // type is IoTEventsClientConfig * const client = new IoTEventsClient(config); * const input = { // DescribeInputRequest * inputName: "STRING_VALUE", // required * }; * const command = new DescribeInputCommand(input); * const response = await client.send(command); * // { // DescribeInputResponse * // input: { // Input * // inputConfiguration: { // InputConfiguration * // inputName: "STRING_VALUE", // required * // inputDescription: "STRING_VALUE", * // inputArn: "STRING_VALUE", // required * // creationTime: new Date("TIMESTAMP"), // required * // lastUpdateTime: new Date("TIMESTAMP"), // required * // status: "CREATING" || "UPDATING" || "ACTIVE" || "DELETING", // required * // }, * // inputDefinition: { // InputDefinition * // attributes: [ // Attributes // required * // { // Attribute * // jsonPath: "STRING_VALUE", // required * // }, * // ], * // }, * // }, * // }; * * ``` * * @param DescribeInputCommandInput - {@link DescribeInputCommandInput} * @returns {@link DescribeInputCommandOutput} * @see {@link DescribeInputCommandInput} for command's `input` shape. * @see {@link DescribeInputCommandOutput} for command's `response` shape. * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape. * * @throws {@link InternalFailureException} (server fault) *

An internal failure occurred.

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

The request was invalid.

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

The resource was not found.

* * @throws {@link ServiceUnavailableException} (server fault) *

The service is currently unavailable.

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

The request could not be completed due to throttling.

* * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* * * @public */ export declare class DescribeInputCommand extends DescribeInputCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeInputRequest; output: DescribeInputResponse; }; sdk: { input: DescribeInputCommandInput; output: DescribeInputCommandOutput; }; }; }