AWS Developer Tools Blog
Category: Programing Language
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 { […]
New, Simplified Method Forms in the AWS SDK for Java
We’re always looking for new ways to improve the tools our team builds, like the AWS SDK for Java and the AWS Toolkit for Eclipse. Sometimes those improvements come as brand new functionality, such as Amazon CloudWatch Metrics for the AWS SDK for Java, and sometimes they’re small tweaks to make the tools faster or […]
Using AWS CloudTrail in PHP – Part 1
AWS CloudTrail is a new service that was announced at AWS re:Invent 2013. CloudTrail provides a history of AWS API calls for your account, delivered as log files to one of your Amazon S3 buckets. The AWS API call history includes API calls made via the AWS Management Console, AWS SDKs, command line interface, and […]
Using SimpleCov with Multiple Test Suites
It can be helpful to generate coverage reports when testing software. While coverage reports do not guarantee well tested software, they can highlight were test coverage is lacking. This is especially true for legacy, or un-tested projects. Recently I ran into a situation where I wanted to generate a coverage report, but the project used […]
Credentials Best Practices
Introduction Your Amazon Web Services account is (we hope!) pretty important to you. Whether you’re running mission-critical applications that need to be protected from malicious interlopers, or you simply want to ensure that only the people you specify can bill resources to your AWS account, it is vital that you keep your account and its […]
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 […]
Running Your Minitest Unit Test Suite
I have blogged a few times recently about Minitest. With Minitest you need to chose how you will execute your tests. When using other tools, like Rspec, there is a bundled test runner. $ rspec ………… Finished in 0.03324 seconds 12 examples, 0 failures Minitest does not provide a test runner as a command line […]
AWS re:Invent PHP Presentation Video Posted
The AWS SDK for PHP team attended AWS re:Invent this year to give our presentation titled Mastering the AWS SDK for PHP. Jeremy and I enjoyed talking with other PHP developers during our PHP office hours, and we got some great feedback on the AWS SDK for PHP. In case you weren’t able to attend, […]