How to use Python Boto library with S3, where the generated URL will be my CNAME subdomain on Amazon S3 server.
The default format is BUCKETNAME.s3.amazonaws.com , but S3 supports its own domain alias using CNAME (so you can have custom.domain.com → CNAME → custom.domain.com.s3.amazonaws.com where " custom.domain.com "is a bucket. AWS Documentation
I see that the boto library has boto.s3.connection.SubdomainCallingFormat and the boto.s3.connection.VHostCallingFormat class ...
Does anyone know how I can configure boto.s3, where is the generated URL for my own custom domain instead of the standard one?
source share