Only allow specific website to view private amazon s3 files

Only allow specific website to view private amazon s3 files
{
	"Version": "2008-10-17",
	"Id": "http referer policy example",
	"Statement": [
		{
			"Sid": "Allow get requests referred by www.s3audible.com/, s3audible.com and IP address",
			"Effect": "Allow",
			"Principal": "*",
			"Action": "s3:GetObject",
			"Resource": "arn:aws:s3:::isd.newone/*",
			"Condition": {
				"StringLike": {
					"aws:Referer": [
						"http://www.s3audible.com/*",
						"http://83.170.124.37/*",
						"http://s3audible.com/*"
					]
				}
			}
		}
	]
}