aws s3 cp s3://mybucket/Test.txt s3://mybucket2/ --storage-class STANDARD_IA import boto3 s3 = boto3.resource('s3') s3.Object ('mybucket', 'hello.txt').put(Body=open('/tmp/hello.txt', 'rb'), StorageClass='STANDARD_IA')