Method: Aws::Rds#create_db_security_group
- Defined in:
- lib/rds/rds.rb
#create_db_security_group(group_name, description, options = {}) ⇒ Object
153 154 155 156 157 158 159 160 161 162 |
# File 'lib/rds/rds.rb', line 153 def create_db_security_group(group_name, description, ={}) params = {} params['DBSecurityGroupName'] = group_name params['DBSecurityGroupDescription'] = description link = do_request("CreateDBSecurityGroup", params, :pull_out_single => [:create_db_security_group_result, :db_security_group]) rescue Exception on_exception end |