getIpAccessSettings method

Future<GetIpAccessSettingsResponse> getIpAccessSettings({
  1. required String ipAccessSettingsArn,
})

Gets the IP access settings.

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

Parameter ipAccessSettingsArn : The ARN of the IP access settings.

Implementation

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