import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; import type { ListWirelessDevicesRequest, ListWirelessDevicesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListWirelessDevicesCommand}. */ export interface ListWirelessDevicesCommandInput extends ListWirelessDevicesRequest { } /** * @public * * The output of {@link ListWirelessDevicesCommand}. */ export interface ListWirelessDevicesCommandOutput extends ListWirelessDevicesResponse, __MetadataBearer { } declare const ListWirelessDevicesCommand_base: { new (input: ListWirelessDevicesCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [ListWirelessDevicesCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Lists the wireless devices registered to your AWS account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTWirelessClient, ListWirelessDevicesCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import * // const { IoTWirelessClient, ListWirelessDevicesCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import * // import type { IoTWirelessClientConfig } from "@aws-sdk/client-iot-wireless"; * const config = {}; // type is IoTWirelessClientConfig * const client = new IoTWirelessClient(config); * const input = { // ListWirelessDevicesRequest * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * DestinationName: "STRING_VALUE", * DeviceProfileId: "STRING_VALUE", * ServiceProfileId: "STRING_VALUE", * WirelessDeviceType: "Sidewalk" || "LoRaWAN", * FuotaTaskId: "STRING_VALUE", * MulticastGroupId: "STRING_VALUE", * }; * const command = new ListWirelessDevicesCommand(input); * const response = await client.send(command); * // { // ListWirelessDevicesResponse * // NextToken: "STRING_VALUE", * // WirelessDeviceList: [ // WirelessDeviceStatisticsList * // { // WirelessDeviceStatistics * // Arn: "STRING_VALUE", * // Id: "STRING_VALUE", * // Type: "Sidewalk" || "LoRaWAN", * // Name: "STRING_VALUE", * // DestinationName: "STRING_VALUE", * // LastUplinkReceivedAt: "STRING_VALUE", * // LoRaWAN: { // LoRaWANListDevice * // DevEui: "STRING_VALUE", * // }, * // Sidewalk: { // SidewalkListDevice * // AmazonId: "STRING_VALUE", * // SidewalkId: "STRING_VALUE", * // SidewalkManufacturingSn: "STRING_VALUE", * // DeviceCertificates: [ // DeviceCertificateList * // { // CertificateList * // SigningAlg: "Ed25519" || "P256r1", // required * // Value: "STRING_VALUE", // required * // }, * // ], * // DeviceProfileId: "STRING_VALUE", * // Status: "PROVISIONED" || "REGISTERED" || "ACTIVATED" || "UNKNOWN", * // Positioning: { // SidewalkPositioning * // DestinationName: "STRING_VALUE", * // }, * // }, * // FuotaDeviceStatus: "Initial" || "Package_Not_Supported" || "FragAlgo_unsupported" || "Not_enough_memory" || "FragIndex_unsupported" || "Wrong_descriptor" || "SessionCnt_replay" || "MissingFrag" || "MemoryError" || "MICError" || "Successful" || "Device_exist_in_conflict_fuota_task", * // MulticastDeviceStatus: "STRING_VALUE", * // McGroupId: Number("int"), * // Positioning: "Enabled" || "Disabled", * // }, * // ], * // }; * * ``` * * @param ListWirelessDevicesCommandInput - {@link ListWirelessDevicesCommandInput} * @returns {@link ListWirelessDevicesCommandOutput} * @see {@link ListWirelessDevicesCommandInput} for command's `input` shape. * @see {@link ListWirelessDevicesCommandOutput} for command's `response` shape. * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

User does not have permission to perform this action.

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

An unexpected error occurred while processing a request.

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

The request was denied because it exceeded the allowed API request rate.

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

The input did not meet the specified constraints.

* * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* * * @public */ export declare class ListWirelessDevicesCommand extends ListWirelessDevicesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListWirelessDevicesRequest; output: ListWirelessDevicesResponse; }; sdk: { input: ListWirelessDevicesCommandInput; output: ListWirelessDevicesCommandOutput; }; }; }