Method: Aws::Rds#authorize_db_security_group_ingress_range

Defined in:
lib/rds/rds.rb

#authorize_db_security_group_ingress_range(group_name, ip_range, options = {}) ⇒ Object



200
201
202
203
204
205
206
207
# File 'lib/rds/rds.rb', line 200

def authorize_db_security_group_ingress_range(group_name, ip_range, options={})
  params                        = {}
  params['DBSecurityGroupName'] = group_name
  params['CIDRIP']              = ip_range
  link                          = do_request("AuthorizeDBSecurityGroupIngress", params)
rescue Exception
  on_exception
end