deleteNetworkAnalyzerConfiguration method

Future<void> deleteNetworkAnalyzerConfiguration({
  1. required String configurationName,
})

Deletes a network analyzer configuration.

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

Implementation

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