Amazon S3 Sample
This is a sample that demonstrates how to make basic requests to Amazon S3 using the AWS SDK for .NET.
Prerequisites
- You must have a valid Amazon Web Services developer account.
- Requires the AWS SDK for .NET. For more information on the AWS SDK for .NET, see http://aws.amazon.com/sdkfornet.
- You must be signed up to use Amazon S3. For more information on Amazon S3, see http://aws.amazon.com/s3.
Running the Sample
The basic steps for running the Amazon S3 sample are:
- Open the
AmazonSimpleDB_Sample.sln file in Visual Studio.
- Open the
App.config file.
- Enter your Access Key ID and Secret Access Key:
<add key="AWSAccessKey" value="<Your Access Key ID>"/>
<add key="AWSSecretKey" value="<Your Secret Access Key>"/>
- Save the file.
- Run the sample in Debug mode by typing F5.
See the Amazon S3 Getting Started Guide for step-by-step instructions on running this sample.