deleteAuthorizer method
Deletes an authorizer.
Requires permission to access the DeleteAuthorizer action.
May throw DeleteConflictException.
May throw InternalFailureException.
May throw InvalidRequestException.
May throw ResourceNotFoundException.
May throw ServiceUnavailableException.
May throw ThrottlingException.
May throw UnauthorizedException.
Parameter authorizerName :
The name of the authorizer to delete.
Implementation
Future<void> deleteAuthorizer({
required String authorizerName,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/authorizer/${Uri.encodeComponent(authorizerName)}',
exceptionFnMap: _exceptionFns,
);
}