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

Gets information about a wireless gateway task definition.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTWirelessClient, GetWirelessGatewayTaskDefinitionCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import * // const { IoTWirelessClient, GetWirelessGatewayTaskDefinitionCommand } = 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 = { // GetWirelessGatewayTaskDefinitionRequest * Id: "STRING_VALUE", // required * }; * const command = new GetWirelessGatewayTaskDefinitionCommand(input); * const response = await client.send(command); * // { // GetWirelessGatewayTaskDefinitionResponse * // AutoCreateTasks: true || false, * // Name: "STRING_VALUE", * // Update: { // UpdateWirelessGatewayTaskCreate * // UpdateDataSource: "STRING_VALUE", * // UpdateDataRole: "STRING_VALUE", * // LoRaWAN: { // LoRaWANUpdateGatewayTaskCreate * // UpdateSignature: "STRING_VALUE", * // SigKeyCrc: Number("long"), * // CurrentVersion: { // LoRaWANGatewayVersion * // PackageVersion: "STRING_VALUE", * // Model: "STRING_VALUE", * // Station: "STRING_VALUE", * // }, * // UpdateVersion: { * // PackageVersion: "STRING_VALUE", * // Model: "STRING_VALUE", * // Station: "STRING_VALUE", * // }, * // }, * // }, * // Arn: "STRING_VALUE", * // }; * * ``` * * @param GetWirelessGatewayTaskDefinitionCommandInput - {@link GetWirelessGatewayTaskDefinitionCommandInput} * @returns {@link GetWirelessGatewayTaskDefinitionCommandOutput} * @see {@link GetWirelessGatewayTaskDefinitionCommandInput} for command's `input` shape. * @see {@link GetWirelessGatewayTaskDefinitionCommandOutput} 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 GetWirelessGatewayTaskDefinitionCommand extends GetWirelessGatewayTaskDefinitionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetWirelessGatewayTaskDefinitionRequest; output: GetWirelessGatewayTaskDefinitionResponse; }; sdk: { input: GetWirelessGatewayTaskDefinitionCommandInput; output: GetWirelessGatewayTaskDefinitionCommandOutput; }; }; }