Skip to main content

AWS S3

Der Zugang von AWS S3 erfordert einen IAM-Benutzer auf AWS mit einer ähnlichen Berechtigungspolitik wie:

{
"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": "*"
}
]
}

Und eine entsprechende Kopie des Access Key/Secret Access Key wurde erstellt und in AIDA eingefügt.

Die Dokumente werden nach und nach an AIDA gesendet, sobald sie auf dem konfigurierten S3-Bucket hochgeladen werden.