Skip to main content

AWS S3

L’ingresso da AWS S3 richiede un utente IAM su AWS con una policy permessi simile a:

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

E relativa copia di Access key/Secret access key creata ed inserita in AIDA.

I documenti verranno inviati ad AIDA mano a mano che vengono caricati sul bucket S3 configurato.