User guide
3. Use the AWS Access Credentials dialog box to configure your application.
• Specify which account profile your code should use to access AWS.To use an existing profile,
click Use existing profile and select the profile from the list.To add a new profile, click Use a
new profile and enter the credentials information. For more information about profiles, see
Configuring Your AWS SDK for .NET Application (p. 8).
• Specify a default AWS region.
4. Click OK to accept the configuration, which opens the project. Examine the project's App.config
file, which will contain something like the following:
<configuration>
<appSettings>
<add key="AWSProfileName" value="development"/>
<add key="AWSRegion" value="us-west-2"/>
</appSettings>
</configuration>
The Toolkit for Visual Studio puts the values you specified in the AWS Access Credentials dialog
box into the two key-value pairs in appSettings.
Version v2.0.0
6
AWS SDK for .NET Developer Guide
Start a New Project