Copiere fisier local intr-un bucket
aws s3 cp test.txt s3://mybucket/test2.txt
Copiere fisier local intr-un bucket cu o data de expirare
aws s3 cp test.txt s3://mybucket/test2.txt --expires 2014-10-01T20:30:00Z
Copiere fisier din S3 pe local in directorul curent
aws s3 cp s3://mybucket/test.txt .
Copiere recursiva de fisiere de pe local in S3
aws s3 cp myDir s3://mybucket/ --recursive --exclude "*.jpg"
Copiere fisier din S3 in S3
aws s3 cp s3://mybucket/test.txt s3://mybucket/test2.txt