diff --git a/docs/storage/aws.markdown b/docs/storage/aws.markdown
new file mode 100644
index 000000000..ad5101014
--- /dev/null
+++ b/docs/storage/aws.markdown
@@ -0,0 +1,21 @@
+---
+layout: default
+title: Storage
+---
+
+## AWS Specific Options
+
+Here's a couple Fog features specific only to AWS S3.
+
+**Encryption**. Amazon provides the option to AES256 encrypt files at rest on
+upload by setting the "x-amz-server-side-encryption" HTTP request header to
+AES256. You can short hand set this HTTP header via the ````encryption```` key
+value pair. For example,
+
+ # encrypt file at rest
+ file = directory.files.create(
+ :key => 'resume.html',
+ :body => File.open("/path/to/my/resume.html"),
+ :public => true,
+ :encryption => 'AES256'
+ )
diff --git a/docs/storage/index.markdown b/docs/storage/index.markdown
index 10bc27bf0..c6e1b1217 100644
--- a/docs/storage/index.markdown
+++ b/docs/storage/index.markdown
@@ -125,6 +125,8 @@ Pop that link in an email and you should be ready to cruise job ads and send you
More clouds? How much extra stuff will you have to do for these services!?! Hardly anything needs to change, you just have to pass slightly different credentials in, but I'm getting ahead of myself.
+Check out the Amazon S3 Storage page for further details, AWS Storage.
+
## Google Cloud Storage
Sign up here and get your credentials here under the section "Interoperable Access".