'How can I copy all objects from one Amazon S3 bucket to another bucket?
I want to copy my folder/object from one s3 bucket to other. How can I possible to copy?
Solution 1:[1]
You cam use the aws s3 sync cli command:
aws s3 sync s3://DOC-EXAMPLE-BUCKET-SOURCE s3://DOC-EXAMPLE-BUCKET-TARGET
See the documentation here : S3 CLI Documentation
If you have a large amount of data check here: What's the best way to transfer large amounts of data from one Amazon S3 bucket to another?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | valdeci |
