SNS トピックの作成
以下追加だけではS3のイベント通知の設定で以下エラーが発生。
「Unable to validate the following destination configurations」
"Condition": {
"ArnLike": {
"aws:SourceArn": "arn:aws:s3:::"
}
結論
{
"Version": "2012-10-17",
"Id": "example-ID",
"Statement": [
{
"Sid": "Example SNS topic policy",
"Effect": "Allow",
"Principal": {
"Service": "s3.amazonaws.com"
},
"Action": [
"SNS:Publish"
],
"Resource": "",
"Condition": {
"ArnLike": {
"aws:SourceArn": "arn:aws:s3:::"
},
"StringEquals": {
"aws:SourceAccount": "<アカウントID>"
}
}
}
]
}