deleteNetworkSettings method
Deletes network settings.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ThrottlingException.
May throw ValidationException.
Parameter networkSettingsArn :
The ARN of the network settings.
Implementation
Future<void> deleteNetworkSettings({
required String networkSettingsArn,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/networkSettings/${networkSettingsArn.split('/').map(Uri.encodeComponent).join('/')}',
exceptionFnMap: _exceptionFns,
);
}