Latest Version
Download the latest version of the AWS SDK for Ruby:
gem install aws-sdk
New Features
| Change | Description |
|---|---|
| Added support for Amazon Simple Email Service Identities. |
Amazon Simple Email Service (Amazon SES) now supports domain verification, which enables customers to verify an entire domain and then send email from any address on that domain. ses = AWS::SimpleEmailService.new
# verify ownership of a domain
identity = ses.identities.verify('yourdomain.com')
identity.verfication_status #=> "Pending"
identity.verfication_token #=> "aOkYCfr+kn1q+UGk4u2hxQ9aNumPPh5o0P+rTupOE9c="
# verify ownership of a single email address
ses.identities.verify('you@yourdomain.com')
You can also get the verification status from a previously requested identity and enumerate all (pending and successful identities). ses.identities.map(&:identity) #=> ['domain.com', 'email@domain.com', ...'] identity = ses.identities['myemail@domain.com'] identity.verification_status #=> 'Failed' identity.delete |
| Updated AWS::EC2::Client to the latest API version |
Updated AWS::EC2::Client to the Amazon EC2 2012-04-01 API version. This adds client methods for operations like DescribeVolumeAttribute, EnableVolumeIO, ModifyVolumeAttribute and adds options for produce code types. A handful of attributes were also added to the AWS::EC2::Volume class. |
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 | 2012-04-01 |
| 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 |
| Auto Scaling | 2011-01-01 |
| AWS CloudFormation | 2010-05-15 |
| AWS Identity and Access Management | 2010-05-08 |
| AWS Security Token Service | 2011-06-15 |
| Elastic Load Balancing | 2011-08-15 |