Here's how I make sure there is only one version of my web site when using Amazon CloudFront.
HTML pages are only served from www.example.com. CSS, JavaScript, images, etc. are served through the CloudFront CDN which has its origin server set to the primary web server using a different virtual host name.
Here are the different host names and what is serving and served by each:
www.example.com - Pages served by EC2 instance. Primary web site name visited by users and by Google.
cdn1.example.com, cdn2.example.com, etc. - CNAME to Amazon CloudFront distribution. HTML pages served from www.example.com will point to these host names for CSS, JavaScript, images, etc.
origin.example.com - Resolves to same EC2 instance as www.example.com using a different virtual host in Apache. Serves up CSS, JavaScript, images, etc. This is the name we tell CloudFront to use as its origin server. Important! If an HTML page is requested from this virtual host, we redirect the user to www.example.com.
The trick here is to use one host name for users to access your web site and another host name for CloudFront to access your web site. If users try to go through CloudFront for your primary HTML pages, they get redirected to your primary host name, so Google only sees a single site.