Latest Version
Download the latest version of the AWS SDK for Ruby:
gem install aws-sdk
New Features
| Change | Description |
|---|---|
| Amazon Simple Workflow Service | The AWS SDK for Ruby now supports Amazon Simple
Workflow Service (Amazon SWF). Amazon SWF is an orchestration
service for building scalable, resilient applications. Using
Amazon SWF, developers can structure the various processing steps
in an application as tasks that drive independent, distributed
components and orchestrate these tasks in a reliable and scalable
manner.
swf = AWS::SimpleWorkflow.new
# register a domain and set its retention period to 30 days
domain = swf.domains.create('my-domain', 30)
# registering workflow and activity types
workflow_type = domain.workflow_types.create('name', 'version', ...)
activity_type = domain.activity_types.create('name', 'version', ...)
# starting a workflow execution
execution = workflow_type.start_execution(:input => '...')
# viewing execution history
execution.events.each do |event|
puts event.event_type
puts event.attributes.to_h.inspect
end
Consult the documentation for AWS::SimpleWorkflow for more details on working with Amazon SWF. |
Resolved Issues
| Change | Description |
|---|---|
| ActionMailer Integration |
A community member resolved an issue which prevented ActionMailer BCC recipients from being passed to AWS::SimpleEmailService#send_raw_email. |
| Documentation References |
A number of incorrect Yard documentation references were generateing broken links inside our API documentation. These references were mosty related to policy objects and AWS::EC2 collections. |
Supported API Versions
This release of the SDK supports the following API versions:
| Service | API Version |
|---|---|
| Amazon DynamoDB | 2011-12-05 |
| Amazon Elastic Compute Cloud | 2011-02-28 |
| Amazon Simple E-mail Service | 2010-12-01 |
| Amazon Simple Notifications Service | 2010-03-31 |
| Amazon Simple Queue Service | 2011-10-01 |
| Amazon Simple Storage Service | 2006-03-01 |
| Amazon Simple Workflow Service | 2012-01-25 |
| Amazon SimpleDB | 2009-04-15 |
| AWS Identity and Access Management | 2010-05-08 |
| AWS Security Token Service | 2011-06-15 |
| Elastic Load Balancing | 2011-08-15 |