0
0

SOA模擬試験2-1

Posted at

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>"
}
}
}
]
}

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0