Download
Download the AWS SDK for Android 1.2.0
New Features
| Change | Description |
|---|---|
| AWS Security Token Service |
The AWS Security Token Service is a web service that enables you to request temporary, limited-privilege credentials for AWS Identity and Access Management (IAM) users or for users that you authenticate (federated users). AWS Security Token Service API Reference |
| Amazon S3 Object Expiration |
Amazon S3's Object Expiration function allows you to define rules to schedule the removal of your objects after a pre-defined time period. The rules are specified in the Lifecycle Configuration policy that you apply to a bucket. |
| Amazon S3 Multi Object Delete |
The Amazon S3 client in the AWS SDK for Android now allows you to delete multiple Amazon S3 objects using a single request. |
| Amazon S3 Website Support |
You can now host your static websites entirely out of Amazon S3. To host your website in Amazon S3, you create a bucket, upload all your files to the bucket, and configure it as a website. Once your bucket has been configured as a website, you can access all your content via the Amazon s3 website endpoint. For more information on how to host a website on Amazon S3, see: http://docs.amazonwebservices.com/AmazonS3/latest/dev/WebsiteHosting.html. |
| Auto Scaling Tagging |
You can now use Auto Scaling group tags to organize your Auto Scaling resources and provide additional information for your Auto Scaling group such as software version, role, or location information. |
Supported API Versions
This release of the SDK supports the following API versions:
| Service | API Version |
|---|---|
| Amazon CloudWatch | 2010-08-01 |
| Amazon DynamoDB | 2011-12-05 |
| Amazon Elastic Compute Cloud (EC2) | 2011-12-15 |
| Amazon Simple Email Service (SES) | 2010-12-01 |
| Amazon Simple Notification Service (SNS) | 2010-03-31 |
| Amazon Simple Queue Service | 2011-10-01 |
| Amazon Simple Storage Service (S3) | 2006-03-01 |
| Amazon SimpleDB | 2009-04-15 |
| Auto Scaling | 2011-01-01 |
| AWS Security Token Service | 2011-06-15 |
| Elastic Load Balancing | 2011-11-15 |
Known Issues
| Issue | Description |
|---|---|
| Problems with Amazon DynamoDB over SSL | We have seen issues using Amazon DynamoDB over SSL with Android v2.1. Android versions 2.2 and later all work with Amazon DynamoDB over SSL.
To not use SSL change the client endpoint for Amazon DynamoDB as follows:
AmazonDynamoDBClient dynamoDbClient = new AmazonDynamoDBClient( credentials ); dynamoDbClient.setEndpoint( "http://dynamodb.us-east-1.amazonaws.com" ); |