S3から別リージョンのS3にオブジェクトをコピーする


コピー元、コピー先両方のバケットを指定してあげる必要がある。

$ aws s3 cp s3://tokyo.bucket/hogehoge.jpg s3://seoul.bucket/ --source-region ap-northeast-1 --region ap-northeast-2

  • --recursiveオプションで全てのオブジェクトをコピーすることも出来る

$ aws s3 cp s3://tokyo.bucket/ s3://seoul.bucket/ --recursive --source-region ap-northeast-1 --region ap-northeast-2