Project DescriptionA .NET Library for Amazon's Web Services. S3, SQS, FPS, EC2, and DevPay
You just need a System.WebServices.AWS// Basic connection
S3Client s3 = new S3Client("myAWSKey", "MyAWSPassword");
bool success = s3.Connect();
LINQ to S3// LINQ to S3
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());
}
More to come soon... LINQ TO S3...........