deleteOtaTaskConfiguration method

Future<void> deleteOtaTaskConfiguration({
  1. required String identifier,
})

Delete the over-the-air (OTA) task configuration.

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

Parameter identifier : The identifier of the over-the-air (OTA) task configuration.

Implementation

Future<void> deleteOtaTaskConfiguration({
  required String identifier,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/ota-task-configurations/${Uri.encodeComponent(identifier)}',
    exceptionFnMap: _exceptionFns,
  );
}