show/hide this revision's text 4
show/hide this revision's text 3 added 410 characters in body

There is an open Source project on CodePlex you might want to take a look at.... It's A .NET Library for Amazon's Web Services. S3, SQS, FPS, EC2, and DevPay

It could be as simple as this(as shown on codeplex):

S3Client s3 = new S3Client("myAWSKey", "MyAWSPassword");

bool success = s3.Connect();

S3Client s3 = new S3Client("key", "secret"):
var buckets = from b in s3.Buckets
                           where b.Name == "demo"
                           select b;
foreach(Bucket b in buckets)
{
     Console.WriteLine(b.About());
}
show/hide this revision's text 2 deleted 68 characters in body

Think

There is an open Source project on CodePlex you should be able might want to figure it out from heretake a look at.... .... It's A .NET Library for Amazon's Web Services. S3, SQS, FPS, EC2, and DevPay

show/hide this revision's text 1