AWS Developer Tools Blog
Category: .NET
Using Amazon SQS Dead Letter Queues
After Jason Fulghum recently posted a blog entry about using Amazon SQS dead letter queues with the AWS SDK for Java, I thought his post would be interesting for .NET developers as well. Here is Jason’s post with the code replaced with the C# equivalent. Amazon SQS recently introduced support for dead letter queues. This […]
Steve Roberts Interviewed in Episode 255 of the PowerScripting Podcast
A few weeks ago Steve Roberts, from the AWS SDK and Tools team for .NET, was pleased to be invited to take part in an episode of the PowerScripting Podcast, chatting with fellow developers about PowerShell here at AWS, the AWS SDK for .NET and other general topics (including his choice of superhero!). The recording […]
Amazon DynamoDB Local Integration with AWS Toolkit for Visual Studio
Recently, the Amazon DynamoDB team released DynamoDB Local, a great tool for local testing and working disconnected from the Internet. With version 1.6.3 of the AWS Toolkit for Visual Studio, DynamoDB Local was integrated to make it easy to manage your locally running DynamoDB. In order to run DynamoDB Local, you need at least a […]
IAM Credential Rotation (Access Key Management for .NET Applications – Part 3)
In the previous post in this series, we talked about using IAM users instead of using the root access keys of your AWS account. In this post, we’ll talk about another security best practice, regularly rotating your credentials. Instead of rotating credentials only when keys are compromised, you should regularly rotate your credentials. If you […]
New Sample Simple Workflow
When you install the SDK from our website, many samples are installed inside Visual Studio, including the Express editions of Visual Studio. Look in the New Project Wizard, where you’ll find samples showing off many of the AWS services. We recently added a new sample that shows off using Amazon Simple Workflow Service (SWF) […]
Resource Condition Support in the AWS CloudFormation Editor
AWS CloudFormation recently added support for conditions that control whether resources are created or what value to set for properties on resources. The CloudFormation editor included with the AWS Toolkit for Visual Studio was updated to support conditions in version 1.6.1. If you have never used the CloudFormation editor, we have a screencast that gives […]
Creating Amazon DynamoDB Tables with PowerShell
Version 2.0 of the AWS Tools for Windows PowerShell contains new cmdlets that allow you to manage tables in Amazon DynamoDB. The cmdlets all share the same noun prefix, DDB, and can be discovered using Get-Command: PS C:> Get-Command -Module AWSPowerShell -Noun DDB* CommandType Name ModuleName ———– —- ———- Cmdlet Add-DDBIndexSchema AWSPowerShell Cmdlet Add-DDBKeySchema AWSPowerShell […]
Using IAM Users (Access Key Management for .NET Applications – Part 2)
In the previous post about access key management, we covered the different methods to provide AWS access keys to your .NET applications. We also talked about a few best practices, one of which is to use IAM users to access AWS instead of the root access keys of your AWS account. In this post, we’ll […]
Configuring DynamoDB Tables for Development and Production
The Object Persistence Model API in the SDK uses annotated classes to tell the SDK which table to store objects in. For example, the DyanmoDBTable attribute on the Users class below tells the SDK to store instances of the Users class into the “Users” table. [DynamoDBTable(“Users”)] public class Users { [DynamoDBHashKey] public string Id { […]
AWS re:Invent .NET Recap
Jim Flanagan and I had a great time at re:Invent this year talking to all the AWS users. It was really interesting to hear all the different ways our SDK and tools are being used. We got some great feature requests and now we are excited to be back in the office to start working […]