/// <summary>
        /// List all the buckets created by this account.
        /// </summary>
        public ListAllMyBucketsResult listAllMyBuckets()
        {
            DateTime timestamp = AWSDateFormatter.GetCurrentTimeResolvedToMillis();
            string   signature = makeSignature("ListAllMyBuckets", timestamp);

            return(s3.ListAllMyBuckets(awsAccessKeyId, timestamp, true, signature));
        }