AWS Exams GCP Exams Azure Exams GitHub Exams Jira Exams ISC2 Exams

Video: A security specialist with administrator aws video

Question 1 Be Honest
« Back   Next aws security Exam Question »
Answer

Full Certification Question

A security specialist with administrator permissions is using the AWS management console to access the CloudWatch logs for a Lambda function named "myFunc". However, upon choosing the option to view the logs in the AWS Lambda console, the specialist encountered an error message reading "error loading Log Streams". The specialist was unable to retrieve the logs as desired and must now find a solution to this issue. Following is an example IAM policy for the Lambda function's execution role: { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": "logs:CreateLogGroup", "Resource": "arn:aws:logs:::*" }, { "Effect": "Allow", "Action": [ "logs:PutLogEvents" ], "Resource": [ "arn:aws:logs:::log-group:/aws/lambda/myFunc:*" ] } ] } Which of the following solutions would you suggest to the specialist for addressing the issue?