AWS Developer Tools Blog
Release: AWS SDK for Java 1.5.0
We released version 1.5.0 of the AWS SDK for Java last night. This release contains several exciting enhancements including: Upgrading to the latest major version of Apache HttpClient Support for the Closeable interface on Amazon S3 objects Easier construction of requests that use map datatypes Batching improvements for Amazon DynamoDB Support for Amazon Elastic Transcoder’s […]
Read MoreData Encryption with Amazon S3
If your application uses Amazon S3 and deals with sensitive data, then you should be taking advantage of the easy ways of increasing the security of your data using the AWS SDK for Java. There are two easy options for locking down your data using Amazon S3 and the AWS SDK for Java. Which one […]
Read MoreRate-Limited Scans in Amazon DynamoDB
Today we’re lucky to have another guest post by David Yanacek from the Amazon DynamoDB team. David is sharing his deep knowledge on Amazon DynamoDB to help explain how to manage performance and throughput usage on your DynamoDB tables. When you scan your table in Amazon DynamoDB, you should follow the DynamoDB best practices for […]
Read MoreWriting less code when using the AWS SDK for Java
Today we have a guest post by David Yanacek from the Amazon DynamoDB team. The AWS SDK for Java provides a convenient set of methods for building request objects. This set of methods, known as a fluent interface, can save you from repeatedly retyping the request variable name, and can even make your code more […]
Read MoreEclipse Deployment: Part 3 – Configuring AWS Elastic Beanstalk
Now that you know the basics about creating AWS Java web applications and deploying them using the AWS Toolkit for Eclipse, let’s talk about some of the ways you can control how your environment runs. AWS Elastic Beanstalk provides several easy ways to configure different features of your environment. The first mechanism we’ll look at […]
Read MoreEclipse Deployment: Part 2 – Deploying to AWS Elastic Beanstalk
In this three part series, we’ll show how easy it is to deploy a Java web application to AWS Elastic Beanstalk using the AWS Toolkit for Eclipse. In part one of this series, we showed how to create an AWS Java Web Project and deploy it to a local Tomcat server. This is a great […]
Read MoreRelease: AWS Toolkit for Eclipse 2.3
We’ve just released a new version of the AWS Toolkit for Eclipse that adds support for managing your AWS Identity and Access Management (IAM) resources directly from within Eclipse, and updates the Amazon DynamoDB Create Table Wizard in the toolkit to support creating tables with Local Secondary Indexes. Check out the new functionality and let […]
Read MoreEclipse Deployment: Part 1 – AWS Java Web Applications
In this three part series, we’ll show how easy it is to deploy a Java web application to AWS Elastic Beanstalk using the AWS Toolkit for Eclipse. The first post in this series demonstrates how to create an AWS Java Web Project, and explains how that project interacts with the existing web development tools in […]
Read MoreEclipse: New AWS Java Project Wizard
If you’re just getting started with the AWS SDK for Java, a great way to learn the SDK is through the AWS Toolkit for Eclipse. In addition to all the tools in the AWS Toolkit for Eclipse for managing your AWS resources, deploying your applications, etc., there are also wizards for creating new AWS projects, […]
Read MoreAmazon S3 TransferManager
One of the great APIs inside the AWS SDK for Java is a class called TransferManager that makes working with uploads and downloads from Amazon S3 easy and convenient. TransferManager provides asynchronous management for uploads and downloads between your application and Amazon S3. You can easily check on the status of your transfers, add handlers […]
Read More