Release: AWS SDK for Java 1.4.0

This release adds support for Amazon EC2 default virtual private clouds. It also adds an easier way to control client endpoints by AWS region.


Created On: March 11, 2013
Last Updated: October 09, 2017


Download

Download the latest AWS SDK for Java

New Features

Change Description

Amazon EC2 Default Virtual Private Clouds

Added support for default virtual private clouds (VPC) when launching EC2 instances. For more information see Amazon Elastic Compute Cloud and the Amazon Elastic Compute Cloud User Guide.

Amazon EC2 AMI Copy

You can copy an AMI from one region to another, enabling you to quickly and easily launch consistent instances in more than one AWS region.

For more information, see Copying AMIs in the Amazon Elastic Compute Cloud User Guide.

Set a client's endpoint by its region.

All web service clients now feature a setRegion(Region) method which can be used to set its endpoint to the appropriate URL for a particular AWS region. The following snippet demonstrates how to use the new interface to set a client's region.

dynamo = new AmazonDynamoDBClient(credentials);
dynamo.setRegion(Region.getRegion(Regions.US_WEST_2));
Regions can also function as client factories:
dynamo = Region.getRegion(Regions.US_WEST_2)
               .createClient(AmazonDynamoDBClient.class, credentials, clientConfig);

The set of canonical regional service endpoints are fetched from cloudfront the first time they are needed, then used for the duration of the process's life. This introduces an insignificant but measurable latency the first time a web service client is constructed in this fashion.

JSON Policy Parser

The SDK's object-oriented policy implementation, com.amazonaws.auth.Policy, now supports creating Policy objects from their JSON representation via the fromJSON() method. For more information, see the documentation for the Policy class.

Model classes now implement java.io.Serializable

All request and response classes in the SDK now implement the Serializable interface, required for several common frameworks including GWT.

Changes to S3 host name SSL verification

The Amazon S3 client is now less strict when validating host names, when using DNS-style bucket addressing (the default). Now any domain ending in s3.amazonaws.com will bypass the strict SSL checking requirements. This change fixes issues experienced by customers in non-US regions using buckets with periods in the name.

Improvements to AmazonS3EncryptionClient

Improvements to AmazonS3EncryptionClient enable IO errors on any file based encrypted upload to Amazon S3 to be retried. This will reduce the amount of transient IO errors you see when using the encryption client to upload from files, since the encryption can now be replayed from the file an unlimited number of times.

Supported API Versions

This release of the SDK supports the following API versions:

Service API Version
Amazon CloudFront 2012-05-05
Amazon CloudFront 2012-03-15 (deprecated)
Amazon CloudSearch 2011-02-01
Amazon CloudWatch 2010-08-01
Amazon DynamoDB 2011-12-05
Amazon Elastic Compute Cloud (EC2) 2013-02-01
Amazon Elastic MapReduce 2009-03-31
Amazon ElastiCache 2012-11-15
Amazon Elastic Transcoder 2012-09-25
Amazon Glacier 2012-06-01
Amazon Redshift 2012-12-01
Amazon Relational Database Service (RDS) 2013-01-10
Amazon Route 53 2012-12-12
Amazon Simple Email Service (SES) 2010-12-01
Amazon Simple Notification Service (SNS) 2010-03-31
Amazon Simple Queue Service 2012-11-05
Amazon Simple Storage Service (S3) 2006-03-01
Amazon Simple Workflow Service (SWF) 2012-01-25
Amazon SimpleDB 2009-04-15
Auto Scaling 2011-01-01
AWS Cloud Formation 2010-05-15
AWS Data Pipeline 2012-10-29
AWS Direct Connect 2012-10-25
AWS Elastic Beanstalk 2010-12-01
AWS Identity and Access Management 2010-05-08
AWS Import/Export 2010-06-01
AWS OpsWorks 2013-02-18
AWS Security Token Service 2011-06-15
AWS Storage Gateway 2012-06-30
Elastic Load Balancing 2011-11-15