getConfiguration method
Retrieves setting configurations for Inspector scans.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
Implementation
Future<GetConfigurationResponse> getConfiguration() async {
final response = await _protocol.send(
payload: null,
method: 'POST',
requestUri: '/configuration/get',
exceptionFnMap: _exceptionFns,
);
return GetConfigurationResponse.fromJson(response);
}