getCredentialLocker method

Future<GetCredentialLockerResponse> getCredentialLocker({
  1. required String identifier,
})

Get information on an existing 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<GetCredentialLockerResponse> getCredentialLocker({
  required String identifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/credential-lockers/${Uri.encodeComponent(identifier)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetCredentialLockerResponse.fromJson(response);
}