.A company is using AWS IAM to manage access to AWS services. The Solutions Architect of the company created the following IAM policy for AWS Lambda: { "Version": "2012-10-17","Statement": [{"Effect":"Allow","Action": ["lambda:CreateFunction","lambda:DeleteFunction"],"Resource": "*"},{"Effect": "Deny","Action":
["lambda:CreateFunction","lambda:DeleteFunction","lambda:InvokeFunction","lambda:TagResource"],"Resource": "*","Condition": {"IpAddress": {"aws:SourceIp": "187.5.104.11/32"}}}]}Which of the following options are
Allowed by this policy?