disassociateWirelessDeviceFromThing method

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

Disassociates a wireless device from its currently associated thing.

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

Parameter id : The ID of the resource to update.

Implementation

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