AWS CLI S3 Notes: Difference between revisions

From Public wiki of Kevin P. Inscoe
Jump to navigation Jump to search
(Created page with "$ 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://yf...")
(No difference)

Revision as of 15:48, 19 August 2020

$ 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