CAS-004 • Practice Test 35
Free CAS-004 practice test — 15 questions with explanations. Set 35. No signup required.
Given the exhibit, what is the effect of this S3 bucket policy on an object stored in 'bucket-name'?
Refer to the exhibit.
```
[Security Policy JSON]
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::bucket-name/*",
"Condition": {
"IpAddress": {
"aws:SourceIp": "10.0.0.0/8"
}
}
},
{
"Effect": "Deny",
"Principal": "*",
"Action": "s3:*",
"Resource": "arn:aws:s3:::bucket-name/*"
}
]
}
```