/// <summary>
        /// Set the logging configuration for a given bucket
        /// </summary>
        /// <param name="bucket">The name of the bucket</param>
        /// <param name="status">The configuration object that represents how the bucket should be logged.</param>
        public void putBucketLogging(string bucket, BucketLoggingStatus status)
        {
            DateTime timestamp = AWSDateFormatter.GetCurrentTimeResolvedToMillis();
            string   signature = makeSignature("SetBucketLoggingStatus", timestamp);

            s3.SetBucketLoggingStatus(bucket, awsAccessKeyId, timestamp, true, signature, null, status);
        }