I am using AWS ec2 instance. On this instance I\'m resulting some files. These operations are done by user data.
Now I want to store those files on s3 by writing co
I think the best answer in general is in fact above, to use the aws
command, but for the cases where you don't want to bother installing anything else, it's also worth mentioning that you can just download the file over HTTPS, e.g. open a browser and navigate to:
https://s3.amazonaws.com/
(bucketName)/
(relativePath)/
(fileName)
That also means you could just use wget
or curl
to do transfer from shell prompts.