getCredentialLocker method
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);
}