deleteIpAccessSettings method

Future<void> deleteIpAccessSettings({
  1. required String ipAccessSettingsArn,
})

Deletes IP access settings.

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

Parameter ipAccessSettingsArn : The ARN of the IP access settings.

Implementation

Future<void> deleteIpAccessSettings({
  required String ipAccessSettingsArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/ipAccessSettings/${ipAccessSettingsArn.split('/').map(Uri.encodeComponent).join('/')}',
    exceptionFnMap: _exceptionFns,
  );
}