Skip to main content

AWS S3

Access from AWS S3 requires an IAM user on AWS with a permissions policy similar to:

{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"sns:CreateTopic",
"sns:GetTopicAttributes",
"sns:SetTopicAttributes",
"sns:Subscribe",
"sns:Unsubscribe",
"sns:ListSubscriptionsByTopic",
"sns:DeleteTopic"
],
"Resource": "arn:aws:sns:*:*:aida-*"
},
{
"Effect": "Allow",
"Action": [
"sns:ListTopics"
],
"Resource": "arn:aws:sns:*:*:*"
},
{
"Effect": "Allow",
"Action": [
"s3:PutBucketNotification",
"s3:GetBucketNotification",
"s3:GetObject"
],
"Resource": "arn:aws:s3:::<s3_bucket_name>"
},
{
"Effect": "Allow",
"Action": [
"sns:Publish"
],
"Resource": "*"
}
]
}

And a copy of the Access key/Secret access key was created and inserted in AIDA.

The documents will be sent to AIDA as they are uploaded to the configured S3 bucket.