Prerequisite
This section describes the prerequisites for connecting Redshift to Lyftrondata. To complete the prerequisites, the user must have admin access to following.
Step 1: Create an S3 bucket
Step 2: Add the required bucket policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:CreateBucket"
],
"Resource": "arn:aws:s3:::<s3-bucket-name>"
},
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:ListBucket",
"s3:DeleteObject",
"s3:GetObjectTagging",
"s3:PutObjectTagging"
],
"Resource": "arn:aws:s3:::<s3-bucket-name>/*"
}
]
}Step 3: Obtain AWS Access Key and Secret Key
Note:
Quickstart Steps
Questions?
Last updated