getAnalyzer method
Retrieves information about the specified analyzer.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter analyzerName :
The name of the analyzer retrieved.
Implementation
Future<GetAnalyzerResponse> getAnalyzer({
required String analyzerName,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/analyzer/${Uri.encodeComponent(analyzerName)}',
exceptionFnMap: _exceptionFns,
);
return GetAnalyzerResponse.fromJson(response);
}