Manoj Patidar
Manoj Patidar

Reputation: 1171

Move the s3 bucket to other aws server

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

Answers (1)

John
John

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

See cp command documentation.

Upvotes: 1

Related Questions