deleteWirelessDeviceImportTask method

Future<void> deleteWirelessDeviceImportTask({
  1. required String id,
})

Delete an import task.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter id : The unique identifier of the import task to be deleted.

Implementation

Future<void> deleteWirelessDeviceImportTask({
  required String id,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/wireless_device_import_task/${Uri.encodeComponent(id)}',
    exceptionFnMap: _exceptionFns,
  );
}