AWS Developer Tools Blog
Getting your Amazon EC2 Windows Password with the AWS SDK for .NET
When you launch a Windows instance in EC2, a password will be generated for the Windows administrator user. You can retrieve this administrator’s password by using the AWS SDK for .NET. In order to be able get the administrator password, you need to launch the EC2 instance with a key pair. To create a key […]
Archiving and Backing-up Data with the AWS SDK for .NET
Jason Fulghum recently posted a blog entry about using Glacier with the AWS SDK for Java that I thought would be interesting for .NET developers. Here is Jason’s post with the code replaced with the C# equivalent. Do you or your company have important data that you need to archive? Have you explored Amazon Glacier […]
Release 2.0.0.6 of the AWS SDK V2.0 for .NET
Today, we updated our version 2 preview of the AWS SDK for .NET. You can download version 2.0.0.6 of the SDK here. This preview contains the following updates. The SDK now requires the region to be explicitly specified through the client constructor or by using the AWSRegion setting in the application’s app or web config […]
Using Elastic IP Addresses
Elastic IP addresses are great for keeping a consistent public IP address. They can also be transferred to other EC2 instances, which is useful if you need to replace an instance but don’t want your public IP address to change. The Amazon EC2 User Guide has information on IP addresses for EC2 instances that can […]
Drag and Drop in the AWS Toolkit for Visual Studio
Using drag and drop can be a great time saver when using your favorite tool, but it is not always obvious what drag and drop features are available. The AWS Toolkit for Visual Studio has many drag and drop features that you might not have discovered yet. AWS Explorer to the Code Window When dragging […]
Getting Ready for AWS re:Invent 2013
AWS re:Invent is coming up again this November 12-15 in Las Vegas. Last year, Steve Roberts and I had a great time meeting with developers and discussing how they use AWS. We also gave a talk about deploying your apps from Visual Studio. To watch the screencast, see Deploying to the AWS Cloud with Visual […]
Using Non-.NET Languages for Windows Store Apps
In Version 2 of our AWS SDK for .NET, we added support for Windows Store apps by creating a .NET Windows Store app class library. This approach works great if you are writing your Windows Store app in a .NET language like C# or VB. It means most code written for the AWS SDK for […]
VPC and AWS Elastic Beanstalk
We recently released a new version of our AWS Elastic Beanstalk .NET container which, like the other Beanstalk containers, is based on AWS CloudFormation and lets you take advantage of all the latest features that have been added to Beanstalk. One of the exciting new features is the ability to deploy into Amazon VPC. The […]
Working with Regions in the AWS SDK for .NET
In earlier versions of the AWS SDK for .NET, using services in regions other than us-east-1 required you to create a config object for the client set the ServiceURL property on the config construct a client using the config object Here’s an example of what that looks like for Amazon DynamoDB: var config = new AmazonDynamoDBConfig { […]
Uploading to Amazon S3 with HTTP POST using the AWS SDK for .NET
Generally speaking, access to your Amazon S3 resources requires your AWS credentials, though there are situations where you would like to grant certain forms of limited access to other users. For example, to allow users temporary access to download a non-public object, you can generate a pre-signed URL. Another common situation is where you want […]