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 { ListInputsRequest, ListInputsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListInputsCommand}. */ export interface ListInputsCommandInput extends ListInputsRequest { } /** * @public * * The output of {@link ListInputsCommand}. */ export interface ListInputsCommandOutput extends ListInputsResponse, __MetadataBearer { } declare const ListInputsCommand_base: { new (input: ListInputsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListInputsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Lists the inputs you have created.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTEventsClient, ListInputsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import * // const { IoTEventsClient, ListInputsCommand } = 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 = { // ListInputsRequest * nextToken: "STRING_VALUE", * maxResults: Number("int"), * }; * const command = new ListInputsCommand(input); * const response = await client.send(command); * // { // ListInputsResponse * // inputSummaries: [ // InputSummaries * // { // InputSummary * // inputName: "STRING_VALUE", * // inputDescription: "STRING_VALUE", * // inputArn: "STRING_VALUE", * // creationTime: new Date("TIMESTAMP"), * // lastUpdateTime: new Date("TIMESTAMP"), * // status: "CREATING" || "UPDATING" || "ACTIVE" || "DELETING", * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListInputsCommandInput - {@link ListInputsCommandInput} * @returns {@link ListInputsCommandOutput} * @see {@link ListInputsCommandInput} for command's `input` shape. * @see {@link ListInputsCommandOutput} 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 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 ListInputsCommand extends ListInputsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListInputsRequest; output: ListInputsResponse; }; sdk: { input: ListInputsCommandInput; output: ListInputsCommandOutput; }; }; }