...
Amazon Web Services Simple Storage System (S3) is an object based storage scheme that presents a file-system view of the objects that it stores. Folders are termed buckets and files are objects. To all intents and purposes it appears like a web hosted file system. The ability to read and write data from S3 buckets is useful for integrating with other systems that can only hadnle handle file-based integrations such as DMPs.
...
Writing a File to an S3 Bucket
In order to write a file from to an S3 bucket you need to provide a File Name (including any path) and a File Contents Source:
...
In order to read a file from an S3 bucket you need to provide a File Name and a File Contents Destination:
The File Name should include the path to file and filename. The Contents Destination is the location for the body of the file.
...