From 2c75e72e83da188f4d8f8fc41e2c4b561fc66151 Mon Sep 17 00:00:00 2001 From: Matt Ferrante Date: Wed, 30 Dec 2015 20:04:41 -0500 Subject: [PATCH] updated s3 module documentation --- cloud/amazon/s3.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloud/amazon/s3.py b/cloud/amazon/s3.py index ada5cd51c84..cd3d12c45de 100644 --- a/cloud/amazon/s3.py +++ b/cloud/amazon/s3.py @@ -114,7 +114,7 @@ options: version_added: "2.0" overwrite: description: - - Force overwrite either locally on the filesystem or remotely with the object/key. Used with PUT and GET operations. + - Force overwrite either locally on the filesystem or remotely with the object/key. Used with PUT and GET operations. Boolean or one of [Always, Never, Different], new in 2.0 required: false default: true version_added: "1.2" @@ -180,7 +180,7 @@ EXAMPLES = ''' # Delete a bucket and all contents - s3: bucket=mybucket mode=delete -# GET an object but dont download if the file checksums match +# GET an object but dont download if the file checksums match. New in 2.0 - s3: bucket=mybucket object=/my/desired/key.txt dest=/usr/local/myfile.txt mode=get overwrite=different # Delete an object from a bucket