Release: AWS SDK for .NET 1.3.17

Release Notes>.NET>Release: AWS SDK for .NET 1.3.17
This release updates the AWS Elastic Beanstalk client to the latest API version and provides a new Amazon S3 region enumeration value for creating buckets in the new US West (Oregon) Region.

Details

Submitted By: Steve@AWS
Release Date: November 9, 2011 7:34 PM GMT
Created On: November 9, 2011 7:34 PM GMT
Last Updated: November 9, 2011 7:34 PM GMT

Download

Download the latest AWS SDK for .NET

New Features

Change Description
US West (Oregon) Region

The S3Region enumeration has been updated to make it easy to create S3 buckets in this new region:

            var bucketRequest = new PutBucketRequest();
            bucketRequest.WithBucketName("my-bucket-name");
            bucketRequest.BucketRegion = S3Region.USW2;
            s3Client.PutBucket(bucketRequest);
		

Alternatively:

            var bucketRequest = new PutBucketRequest();
            bucketRequest.WithBucketName("my-bucket-name");
            bucketRequest.WithBucketRegionName("us-west-2");
            s3Client.PutBucket(bucketRequest);
        

You can access other services in the new US West (Oregon) Region by setting the appropriate endpoint in your client configuration objects:

            AmazonEC2Config config = new AmazonEC2Config();
            config.ServiceURL = "https://ec2.us-west-2.amazonaws.com";
            AmazonEC2 ec2Client = AWSClientFactory.CreateAmazonEC2Client(config);
        
AWS Elastic Beanstalk MaxRecords Parameter

You can now specify the maximum number of events to be returned when calling the DescribeEvents API.

For more information see the AWS Elastic Beanstalk release notes.

Known Issues

Issue Description
Installation Requires Administrator Privileges The default install location is %PROGRAMFILES%, which on most computers is "c:\program files". In order to install files to the default location, the MSI must be run by an Administrator. If you don't have Administrator privileges on the machine, please change the install location to something like "c:\Documents and Settings\<you>\AWS SDK for .NET", and the install will complete successfully. If you are running on Vista, your personal folder is similar to "c:\users\<you>\".
Uninstalling the SDK Produces "Unknown Publisher" Message On Windows Vista, uninstalling the MSI results in an "Unknown Publisher" dialog even though the installer is signed by Amazon Web Services. This is a known Windows Installer bug on Windows Vista, and is documented here: http://support.microsoft.com/kb/929467/en-us

Supported API Versions

This release of the SDK supports the following API versions:

Service API Version
Amazon CloudFront 2010-11-01
Amazon CloudWatch 2010-08-01
Amazon Elastic Compute Cloud 2011-05-15
Amazon Elastic MapReduce 2009-03-31
Amazon ElastiCache 2011-07-15
Amazon Relational Database Service 2011-04-01
Amazon Simple Email Service 2010-12-01
Amazon Simple Notification Service 2010-03-31
Amazon Simple Queue Service 2011-10-01
Amazon Simple Storage Service 2006-03-01
Amazon SimpleDB 2009-04-15
Auto Scaling 2011-01-01
AWS CloudFormation 2010-05-15
AWS Elastic Beanstalk 2010-12-01
AWS Identity and Access Management 2010-05-08
AWS Import/Export 2010-06-01
AWS Security Token Service 2011-06-15
Elastic Load Balancing 2011-08-15
©2013, Amazon Web Services, Inc. or its affiliates. All rights reserved.