resetRuntimeLogConfiguration method

Future<void> resetRuntimeLogConfiguration({
  1. required String managedThingId,
})

Reset a runtime log configuration for a specific managed thing.

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

Parameter managedThingId : The id of a managed thing.

Implementation

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