Reputation: 1171
I have created a AWS s3 buckets and here uploaded many of images but now i want to move all images to other AWS s3 buckets.
so can we direct copy buckets or link to other AWS server.
Please provide suggestion.
Upvotes: 0
Views: 35
Reputation: 975
You can use the AWS Command-Line Interface (CLI) S3 modules cp
( copy ) command to copy files from bucket to bucket:
aws s3 cp S3://mybucket/file.jpg S3://anotherbucket/file.jpg
Upvotes: 1