From 5206e36b65b79fffdf4a5d164b48dc0262e9aa1f Mon Sep 17 00:00:00 2001 From: James Miller Date: Wed, 2 Feb 2011 14:57:19 +0800 Subject: [PATCH] [aws|s3] Add documentation for Reduced Redundancy Storage, already supported by Fog --- lib/fog/storage/requests/aws/put_object.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/fog/storage/requests/aws/put_object.rb b/lib/fog/storage/requests/aws/put_object.rb index 007dd827b..24b0fec27 100644 --- a/lib/fog/storage/requests/aws/put_object.rb +++ b/lib/fog/storage/requests/aws/put_object.rb @@ -18,6 +18,7 @@ module Fog # * 'Content-Type'<~String> - Standard MIME type describing contents (defaults to MIME::Types.of.first) # * 'Expires'<~String> - Cache expiry # * 'x-amz-acl'<~String> - Permissions, must be in ['private', 'public-read', 'public-read-write', 'authenticated-read'] + # * 'x-amz-storage-class'<~String> - Default is 'STANDARD', set to 'REDUCED_REDUNDANCY' for non-critical, reproducable data # * "x-amz-meta-#{name}" - Headers to be returned with object, note total size of request without body must be less than 8 KB. # # ==== Returns