deleteCredentialLocker method

Future<void> deleteCredentialLocker({
  1. required String identifier,
})

Delete a credential locker.

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

Parameter identifier : The identifier of the credential locker.

Implementation

Future<void> deleteCredentialLocker({
  required String identifier,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/credential-lockers/${Uri.encodeComponent(identifier)}',
    exceptionFnMap: _exceptionFns,
  );
}