in reply to Re: Automating upload of files to Amazon S3 Buckets
in thread Automating upload of files to Amazon S3 Buckets

Hi. So I did my research and the file data goes in the "data" field. So I have to open a file stream and essentially stream the file into the "data" field?

Or I guess File::Slurp would work, and jam that string into the 'data' field (sometimes it's called "value.").

Also, I am choosing to pronounce it "Bouquet" in honor of Hyacinth.

  • Comment on Re^2: Automating upload of files to Amazon S3 Buckets

Replies are listed 'Best First'.
Re^3: Automating upload of files to Amazon S3 Buckets
by ltriant (Scribe) on Oct 08, 2013 at 23:18 UTC

    Look at the add_key_filename() method. It is for uploading files into S3.

      ha and here I was Slurping file contents into a string and passing it as data.

      I guess these modules are not as well documented as most of the other ones I use but they are still useful. Thanks.