Auxia
  • Welcome!
  • Quick Start
    • Getting Started
      • Step 1: Ingesting your data
      • Step 2: Integrating Auxia into your product
      • Step 3: Defining your model objective
      • Step 4: Creating your first treatment
      • Step 5: Measuring success
        • Interactions
        • Engagement
  • Data Ingestion
    • Overview
      • User event data
      • User attributes
    • Data Connections
      • Google BigQuery
      • Amazon S3
      • Amplitude
        • Batch with Export API
        • Streaming with Google Pub/Sub
  • Deploying Auxia
    • Deploying with Auxia's API
      • Making your first call
      • Tracking interactions
      • Surfaces and types
      • Contextual attributes for real-time distribution
    • Delivery Integrations
      • Braze
  • API Reference
    • Get Treatments
    • Log Treatment Interactions
  • Treatment Management
Powered by GitBook
On this page
  • How to share an AWS S3 Bucket with Auxia
  • Step 1
  • Step 2
  • Step 3
  • Step 4
  • Step 5
  • Step 6
  1. Data Ingestion
  2. Data Connections

Amazon S3

PreviousGoogle BigQueryNextAmplitude

Last updated 8 months ago

How to share an AWS S3 Bucket with Auxia

Time required: <10 minutes

Step 1

Login to AWS Management Console and navigate to the S3 service by selecting "S3" from the list of services or searching for it.

Step 2

From the list of your S3 buckets, click on the desired bucket(s) that you will share with Auxia.

Step 3

Navigate to the Bucket Policy and click on the "Permissions" tab.

Step 4

Under the "Bucket Policy" section, click the "Edit" button. This will allow you to provision the necessary permissions to the Auxia team to begin ingesting your data.

Step 5

After clicking the “Edit” button, copy and paste the following policy as a template to grant read access to the specific IAM role needed for the Auxia team.

{
	"Version": "2012-10-17",
	"Statement": [
		{
			"Effect": "Allow",
			"Principal": {
			        "AWS": "arn:aws:iam::058264127257:role/AuxiaTransferRole"
			},
			"Action": [
				"s3:GetBucketLocation",
				"s3:ListBucket",
				"s3:GetObject"
			],
			"Resource": [
				"arn:aws:s3:::YOUR_BUCKET_NAME/*",
				"arn:aws:s3:::YOUR_BUCKET_NAME"
			]
		}
	]
}

Legend:

  • YOUR_BUCKET_NAME: Name of your S3 bucket.

Step 6

Save the Policy by clicking the "Save changes" button. Please share the bucket ARN (Amazon Resource Name) or name with the Auxia team once you have provided the necessary permissions.

Once this step is completed, click save and your S3 dataset will start flowing through the "Events" section in the "Manage" page of the Auxia console.

Page cover image