clearDefaultAuthorizer method

Future<void> clearDefaultAuthorizer()

Clears the default authorizer.

May throw ResourceNotFoundException. May throw InvalidRequestException. May throw ThrottlingException. May throw UnauthorizedException. May throw ServiceUnavailableException. May throw InternalFailureException.

Implementation

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