PAS-C01 Migration • Set 20
PAS-C01 Migration Practice Test 20 — 15 questions with explanations. Free, no signup.
A company is migrating an SAP HANA database to AWS using AWS DMS. An IAM policy has been created for the DMS service role as shown in the exhibit. The migration fails with an error that the DMS task cannot access the source database. Which additional permission is most likely required?
Refer to the exhibit.
Exhibit:
```
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dms:CreateReplicationTask",
"dms:StartReplicationTask",
"dms:DescribeReplicationTasks"
],
"Resource": "*"
},
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:ListBucket"
],
"Resource": "arn:aws:s3:::migration-bucket/*"
}
]
}
```