What's New?
| Change | Description |
|---|---|
| Amazon EC2 Micro Instance Type |
The AWS SDK for Java now includes an enumeration value for the new Amazon EC2 Micro instance type.
The sample code below demonstrates how to launch a Micro instance.
/*
* Micro instances can only be used with EBS backed AMIs. In this example, we're
* using the "Getting Started on Fedora Core 8" AMI (ami-b232d0db) from the US East
* region.
*/
RunInstancesRequest request = new RunInstancesRequest("ami-b232d0db", 1, 1);
request.setInstanceType(InstanceType.T1Micro.toString());
List<Instance> instances = ec2.runInstances(request).getReservation().getInstances();
System.out.println("Launch instances: " + instances);
|
| Minor Bug Fixes | Minor bug fixes and documentation tweaks for the snapshot operations in the Amazon EC2 client. |
Supported API Versions
The AWS SDK for Java supports the following API versions:
| Service | API Version |
|---|---|
| Amazon EC2 | 2010-06-15 |
| Amazon S3 | 2006-03-01 |
| Amazon SimpleDB | 2009-04-15 |
| Amazon RDS | 2010-06-28 |
| Amazon CloudFront | 2009-12-15 |
| Amazon SQS | 2009-02-01 |
| Amazon Elastic MapReduce | 2009-03-31 |
| Amazon CloudWatch | 2009-05-15 |
| Amazon Elastic LoadBalancing | 2009-11-25 |
| Amazon Auto Scaling | 2009-05-15 |
| Amazon Simple Notification Service | 2010-03-31 |
| AWS Import/Export | 2010-06-01 |
| AWS Identity and Access Management | 2010-05-08 |
Download the AWS SDK for Java from http://aws.amazon.com/sdkforjava/.