How to perform fast S3 copy from one folder to other folder

 How to perform fast S3 copy from one folder to other folder


To perform fast S3 copy we can use AWS CLI command in python using subprocess.

import subprocess
subprocess.call(['aws', 's3', 'sync', "s3://from_bucket", "s3://to_bucket"])

Comments