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 { ListPositionConfigurationsRequest, ListPositionConfigurationsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListPositionConfigurationsCommand}. */ export interface ListPositionConfigurationsCommandInput extends ListPositionConfigurationsRequest { } /** * @public * * The output of {@link ListPositionConfigurationsCommand}. */ export interface ListPositionConfigurationsCommandOutput extends ListPositionConfigurationsResponse, __MetadataBearer { } declare const ListPositionConfigurationsCommand_base: { new (input: ListPositionConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [ListPositionConfigurationsCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

List position configurations for a given resource, such as positioning solvers.

* *

This action is no longer supported. Calls to retrieve position information should * use the GetResourcePosition API operation instead.

*
* * @deprecated This operation is no longer supported. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTWirelessClient, ListPositionConfigurationsCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import * // const { IoTWirelessClient, ListPositionConfigurationsCommand } = 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 = { // ListPositionConfigurationsRequest * ResourceType: "WirelessDevice" || "WirelessGateway", * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListPositionConfigurationsCommand(input); * const response = await client.send(command); * // { // ListPositionConfigurationsResponse * // PositionConfigurationList: [ // PositionConfigurationList * // { // PositionConfigurationItem * // ResourceIdentifier: "STRING_VALUE", * // ResourceType: "WirelessDevice" || "WirelessGateway", * // Solvers: { // PositionSolverDetails * // SemtechGnss: { // SemtechGnssDetail * // Provider: "Semtech", * // Type: "GNSS", * // Status: "Enabled" || "Disabled", * // Fec: "ROSE" || "NONE", * // }, * // }, * // Destination: "STRING_VALUE", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListPositionConfigurationsCommandInput - {@link ListPositionConfigurationsCommandInput} * @returns {@link ListPositionConfigurationsCommandOutput} * @see {@link ListPositionConfigurationsCommandInput} for command's `input` shape. * @see {@link ListPositionConfigurationsCommandOutput} 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 ListPositionConfigurationsCommand extends ListPositionConfigurationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListPositionConfigurationsRequest; output: ListPositionConfigurationsResponse; }; sdk: { input: ListPositionConfigurationsCommandInput; output: ListPositionConfigurationsCommandOutput; }; }; }