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

* Lists one or more input routings. *

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTEventsClient, ListInputRoutingsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import * // const { IoTEventsClient, ListInputRoutingsCommand } = 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 = { // ListInputRoutingsRequest * inputIdentifier: { // InputIdentifier * iotEventsInputIdentifier: { // IotEventsInputIdentifier * inputName: "STRING_VALUE", // required * }, * iotSiteWiseInputIdentifier: { // IotSiteWiseInputIdentifier * iotSiteWiseAssetModelPropertyIdentifier: { // IotSiteWiseAssetModelPropertyIdentifier * assetModelId: "STRING_VALUE", // required * propertyId: "STRING_VALUE", // required * }, * }, * }, * maxResults: Number("int"), * nextToken: "STRING_VALUE", * }; * const command = new ListInputRoutingsCommand(input); * const response = await client.send(command); * // { // ListInputRoutingsResponse * // routedResources: [ // RoutedResources * // { // RoutedResource * // name: "STRING_VALUE", * // arn: "STRING_VALUE", * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListInputRoutingsCommandInput - {@link ListInputRoutingsCommandInput} * @returns {@link ListInputRoutingsCommandOutput} * @see {@link ListInputRoutingsCommandInput} for command's `input` shape. * @see {@link ListInputRoutingsCommandOutput} 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 ListInputRoutingsCommand extends ListInputRoutingsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListInputRoutingsRequest; output: ListInputRoutingsResponse; }; sdk: { input: ListInputRoutingsCommandInput; output: ListInputRoutingsCommandOutput; }; }; }