deleteApiKeyCredentialProvider method
Deletes an API key credential provider.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw UnauthorizedException.
May throw ValidationException.
Parameter name :
The name of the API key credential provider to delete.
Implementation
Future<void> deleteApiKeyCredentialProvider({
required String name,
}) async {
final $payload = <String, dynamic>{
'name': name,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/identities/DeleteApiKeyCredentialProvider',
exceptionFnMap: _exceptionFns,
);
}