Data Delivery Using S3
Our preferred mode of data delivery is through Amazon AWS S3.
How to Set Up S3 Delivery
To receive data via S3, follow these steps:
1. Sign Into AWS
Log into the AWS S3 console.
2. Create an S3 Bucket
- Create a new bucket for deliveries (e.g.,
s3://YOURCOMPANY-data-deliveries
).
3. Configure Bucket Policy
To allow Forager.ai to send data to your S3 bucket, you will need to apply the following bucket policy:
📌 Bucket Policy (Replace YOURCOMPANY-data-deliveries
with your actual bucket name)
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::YOURCOMPANY-data-deliveries",
"arn:aws:s3:::YOURCOMPANY-data-deliveries/*"
]
}
]
}
4. Provide AWS Access Keys
Once the bucket is set up, send the following details to Forager.ai:
- AWS Access Key
- AWS Secret Key
Our team will configure the data delivery to send data directly to your S3 bucket.
Need Help?
📩 For Support: Contact us at support@forager.ai.