Copying buckets
Moving content in an s3 bucket to another bucket
AWS S3 Sync
aws s3 sync s3://origin/path s3://destination/pathParallel
# sync files starting with "2014"
aws s3 sync \
--exclude "*" \
--include "2014*"
s3://origin/path \
s3://destination/path
# sync files starting with "2015"
aws s3 sync \
--exclude "*" \
--include "2015*"
s3://origin/path \
s3://destination/pathMore performant (Managed)
Last updated
Was this helpful?