Granting Vimeo access to your S3 bucket

We support bulk ingests from AWS S3 storage. You can either use Vimeo's storage or you can give us access to ingest the files directly from yours. 

1
Log in to your AWS console and open the S3 browser.
2
Select the S3 location (bucket) name to access the  Overview pane.
3
Click the  Permissions tab, then  Bucket Policy
4
Enter the below JSON policy, taking care to update "BUCKET_NAME" to the actual name of the bucket you've created for this purpose.
 
{
	"Version": "2012-10-17",
	"Statement": [
		{
			"Sid": "AllowListBucket",
			"Effect": "Allow",
			"Principal": {
				"AWS": "arn:aws:iam::009826608486:user/vhx"
			},
			"Action": "s3:ListBucket",
			"Resource": "arn:aws:s3:::BUCKET_NAME"
		},
		{
			"Sid": "AllowGetObject",
			"Effect": "Allow",
			"Principal": {
				"AWS": "arn:aws:iam::009826608486:user/vhx"
			},
			"Action": [
				"s3:GetObject",
				"s3:GetObjectAcl"
			],
			"Resource": "arn:aws:s3:::BUCKET_NAME/*"
		},
		{
			"Sid": "AllowPutObject",
			"Effect": "Allow",
			"Principal": {
				"AWS": "arn:aws:iam::009826608486:user/vhx"
			},
			"Action": [
				"s3:PutObject",
				"s3:PutObjectAcl"
			],
			"Resource": "arn:aws:s3:::BUCKET_NAME/*"
		}
	]
}
	
5
Press  Save after entering the policy.