AWS CLI S3 Notes

From Public wiki of Kevin P. Inscoe
Jump to navigation Jump to search
$ aws --profile mystuffa s3 ls --region us-east-1 "s3://s3.amazonaws.com/myfile-file-shares” - DOES NOT WORK

VS

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

working command:

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