
secret_access_key: REPLACE_WITH_SECRET_ACCESS_KEY
test:
<<: *development
production:
<<: *development
6. Create app/models/my_record.rb as follows:
class MyRecord < AWS::Record::Base
string_attr :name
end
7. Create the SimpleDB domain:
$ rails console
> MyRecord.create_domain
8. Now, you can play around with the model by creating some records and querying them:
> MyRecord.find(:all).to_a
=> []
> MyRecord.new(:name => "The first one").save
=> true
> MyRecord.new(:name => "The second one").save
=> true
> MyRecord.where('name like ?', "%first%").count
=> 1
Exit the rails console before continuing to the next step:
> exit
To generate a scaffold controller for your model
1. Type the following command:
$ rails generate scaffold_controller MyRecord name:string
rails server
2. Add a route to your scaffold controller in config/routes.rb:
Version v1.0.0
24
AWS SDK for Ruby Developer Guide
Run the Samples
Comentarios a estos manuales