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 { GetWirelessGatewayTaskRequest, GetWirelessGatewayTaskResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetWirelessGatewayTaskCommand}. */ export interface GetWirelessGatewayTaskCommandInput extends GetWirelessGatewayTaskRequest { } /** * @public * * The output of {@link GetWirelessGatewayTaskCommand}. */ export interface GetWirelessGatewayTaskCommandOutput extends GetWirelessGatewayTaskResponse, __MetadataBearer { } declare const GetWirelessGatewayTaskCommand_base: { new (input: GetWirelessGatewayTaskCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetWirelessGatewayTaskCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Gets information about a wireless gateway task.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTWirelessClient, GetWirelessGatewayTaskCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import * // const { IoTWirelessClient, GetWirelessGatewayTaskCommand } = 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 = { // GetWirelessGatewayTaskRequest * Id: "STRING_VALUE", // required * }; * const command = new GetWirelessGatewayTaskCommand(input); * const response = await client.send(command); * // { // GetWirelessGatewayTaskResponse * // WirelessGatewayId: "STRING_VALUE", * // WirelessGatewayTaskDefinitionId: "STRING_VALUE", * // LastUplinkReceivedAt: "STRING_VALUE", * // TaskCreatedAt: "STRING_VALUE", * // Status: "PENDING" || "IN_PROGRESS" || "FIRST_RETRY" || "SECOND_RETRY" || "COMPLETED" || "FAILED", * // }; * * ``` * * @param GetWirelessGatewayTaskCommandInput - {@link GetWirelessGatewayTaskCommandInput} * @returns {@link GetWirelessGatewayTaskCommandOutput} * @see {@link GetWirelessGatewayTaskCommandInput} for command's `input` shape. * @see {@link GetWirelessGatewayTaskCommandOutput} 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 ResourceNotFoundException} (client fault) *

Resource does not exist.

* * @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 GetWirelessGatewayTaskCommand extends GetWirelessGatewayTaskCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetWirelessGatewayTaskRequest; output: GetWirelessGatewayTaskResponse; }; sdk: { input: GetWirelessGatewayTaskCommandInput; output: GetWirelessGatewayTaskCommandOutput; }; }; }