getRecommenderFilter method
Retrieves information about a specific recommender filter in a domain.
May throw AccessDeniedException.
May throw BadRequestException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
Parameter domainName :
The unique name of the domain.
Parameter recommenderFilterName :
The name of the recommender filter to retrieve.
Implementation
Future<GetRecommenderFilterResponse> getRecommenderFilter({
required String domainName,
required String recommenderFilterName,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/domains/${Uri.encodeComponent(domainName)}/recommender-filters/${Uri.encodeComponent(recommenderFilterName)}',
exceptionFnMap: _exceptionFns,
);
return GetRecommenderFilterResponse.fromJson(response);
}