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 { StartWirelessDeviceImportTaskRequest, StartWirelessDeviceImportTaskResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link StartWirelessDeviceImportTaskCommand}. */ export interface StartWirelessDeviceImportTaskCommandInput extends StartWirelessDeviceImportTaskRequest { } /** * @public * * The output of {@link StartWirelessDeviceImportTaskCommand}. */ export interface StartWirelessDeviceImportTaskCommandOutput extends StartWirelessDeviceImportTaskResponse, __MetadataBearer { } declare const StartWirelessDeviceImportTaskCommand_base: { new (input: StartWirelessDeviceImportTaskCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: StartWirelessDeviceImportTaskCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Start import task for provisioning Sidewalk devices in bulk using an S3 CSV * file.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTWirelessClient, StartWirelessDeviceImportTaskCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import * // const { IoTWirelessClient, StartWirelessDeviceImportTaskCommand } = 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 = { // StartWirelessDeviceImportTaskRequest * DestinationName: "STRING_VALUE", // required * ClientRequestToken: "STRING_VALUE", * Tags: [ // TagList * { // Tag * Key: "STRING_VALUE", // required * Value: "STRING_VALUE", // required * }, * ], * Positioning: "Enabled" || "Disabled", * Sidewalk: { // SidewalkStartImportInfo * DeviceCreationFile: "STRING_VALUE", * Role: "STRING_VALUE", * Positioning: { // SidewalkPositioning * DestinationName: "STRING_VALUE", * }, * }, * }; * const command = new StartWirelessDeviceImportTaskCommand(input); * const response = await client.send(command); * // { // StartWirelessDeviceImportTaskResponse * // Id: "STRING_VALUE", * // Arn: "STRING_VALUE", * // }; * * ``` * * @param StartWirelessDeviceImportTaskCommandInput - {@link StartWirelessDeviceImportTaskCommandInput} * @returns {@link StartWirelessDeviceImportTaskCommandOutput} * @see {@link StartWirelessDeviceImportTaskCommandInput} for command's `input` shape. * @see {@link StartWirelessDeviceImportTaskCommandOutput} 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 ConflictException} (client fault) *

Adding, updating, or deleting the resource can cause an inconsistent state.

* * @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 StartWirelessDeviceImportTaskCommand extends StartWirelessDeviceImportTaskCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StartWirelessDeviceImportTaskRequest; output: StartWirelessDeviceImportTaskResponse; }; sdk: { input: StartWirelessDeviceImportTaskCommandInput; output: StartWirelessDeviceImportTaskCommandOutput; }; }; }