1
Communicating Data Insights
hard
A data analyst is reviewing an S3 bucket policy that controls access to a data lake. The analyst wants to communicate that the current policy restricts data downloads to a specific IP range. Which of the following best describes the policy's effect?
Exhibit
Refer to the exhibit.
```
{
"policy": {
"effect": "Deny",
"action": ["s3:GetObject"],
"resource": "arn:aws:s3:::data-bucket/*",
"condition": {
"IpAddress": {
"aws:SourceIp": "192.0.2.0/24"
}
}
}
}
```