deleteFuotaTask method

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

Deletes a FUOTA task.

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

Implementation

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