Question 208:
Your company has a set of files in an S3 bucket. The CIO wants to be informed when any configuration changes occur on the S3 bucket. Which of the following can be used as a security measure ensuring that you don’t put too many access restrictions on the bucket for existing users?
Answer options:
A.Use a bucket policy and place a DENY statement for the PutObject Action.
B.Use an AWS Config rule to monitor the configuration changes of the S3 bucket and use SNS to send notifications to the security department.
C.Enable versioning for the bucket.
D.Place the following statement in the bucket policy { "Version":"2012-10-17", "Statement":[ { "Sid":"AddPerm", "Effect":"Allow", "Principal": "*", "Action":["s3:GetObject"], "Resource":["arn:aws:s3:::examplebucket/*"] } ] }.