A newly hired Solutions Architect is assigned to manage a set of CloudFormation templates that are used in the company's cloud architecture in AWS. The Architect accessed the templates and tried to analyze the configured IAM policy for an S3 bucket.
What does the above IAM policy allow? (Choose three.){
"Version": "2012-10-17",
"Statement": [
{ "Effect": "Allow",
"Action": ["s3:Get*", "s3:List*"],
"Resource": "*"
},
{ "Effect": "Allow",
"Action": "s3:PutObject",
"Resource": "arn:aws:s3:::boracay/*"
}
]
}