getNetworkAnalyzerConfiguration method

Future<GetNetworkAnalyzerConfigurationResponse> getNetworkAnalyzerConfiguration({
  1. required String configurationName,
})

Get network analyzer configuration.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Implementation

Future<GetNetworkAnalyzerConfigurationResponse>
    getNetworkAnalyzerConfiguration({
  required String configurationName,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/network-analyzer-configurations/${Uri.encodeComponent(configurationName)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetNetworkAnalyzerConfigurationResponse.fromJson(response);
}