deleteModelInvocationLoggingConfiguration method

Future<void> deleteModelInvocationLoggingConfiguration()

Delete the invocation logging.

May throw AccessDeniedException. May throw InternalServerException. May throw ThrottlingException.

Implementation

Future<void> deleteModelInvocationLoggingConfiguration() async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/logging/modelinvocations',
    exceptionFnMap: _exceptionFns,
  );
}