Amazon S3

Get automated data uploads to your Amazon cloud storage

Attribution supports data exports to Amazon Simple Storage Service (Amazon S3). The export will include only raw unattributed data such as channels (filters), visits, spend, conversion events, and pageviews with no additional modeling applied.

If you're interested in a receiving data exports to an Amazon S3 bucket please follow along below.

Setting up an Amazon S3 bucket

You can automatically receive Attribution App data directly to your AWS buckets for more detailed analysis by data scientist and marketing engineers.

This integration requires an AWS account and S3 bucket to be created.

Creating the bucket & setting policy

Create a new empty Amazon S3 bucket. Once you have bucket created you need to setup "Bucket policy" which is available under "Permissions" tab of bucket. Please copy and paste the below example policy using the JSON option in AWS (replacing <bucket-name> with the name of the bucket you just created):

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "Stmt1441164338000",
      "Effect": "Allow",
      "Action": [
        "s3:*"
      ],
      "Resource": [
        "arn:aws:s3:::<bucket-name>",
        "arn:aws:s3:::<bucket-name>/*"
      ],
      "Principal": {
        "AWS": [
          "arn:aws:iam::348454833122:root"
        ]
      }
    }
  ]
}

This policy will give Attribution App full access to your S3 bucket so we could perform upload and further synchronization of the exported data.

Once you've created the AWS bucket:
Please contact [email protected] with your bucket name and the fields you'd like to export. One of our team members will follow up shortly after.


What’s Next