AWS CLI S3 Notes

From Public wiki of Kevin P. Inscoe
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

DOES NOT WORK

$ aws --profile mystuffa s3 ls --region us-east-1 "s3://s3.amazonaws.com/myfile-file-shares” 

WORKS

$ aws --profile mystuffa s3 ls --region us-east-1 "s3://myfile-file-shares” 

working example:

$ date; time aws  --profile mystuffa --region us-east-1 s3 sync /ftp s3://myfile-file-shares/Tools ; date