The CFO of a company wants to allow one of his employees to view only the AWS usage report page. Which of the below mentioned IAM policy statements allows the user to have access to the AWS usage report page?
A.
"Effect": "Allow", "Action": ["Describe"], "Resource": "Billing"
B.
"Effect": "Allow", "Action": ["aws-portal: ViewBilling"], "Resource": "*"
C.
"Effect": "Allow", "Action": ["aws-portal: ViewUsage"], "Resource": "*"
D.
"Effect": "Allow", "Action": ["AccountUsage], "Resource": "*"
Suggested Answer:C🗳️
AWS Identity and Access Management is a web service which allows organizations to manage users and user permissions for various AWS services. If the CFO wants to allow only AWS usage report page access, the policy for that IAM user will be as given below: { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "aws-portal:ViewUsage" ], "Resource": "*" } ] } Reference: http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html
Both B & C are required.
To allow IAM users to view usage reports, you must allow both ViewUsage and ViewBilling.
http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html
The correct answer is:
C. "Effect": "Allow", "Action": ["aws-portal:ViewUsage"], "Resource": "*"
To allow a user to have access to the AWS usage report page, you need to grant them the appropriate permissions. The "aws-portal:ViewUsage" action specifically allows the user to view the AWS usage report page. The wildcard (*) in the "Resource" field allows the user to view the usage report for any resource.
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
manoj101
Highly Voted 3 years, 7 months agokaush
3 years, 6 months ago01037
3 years, 6 months ago01037
3 years, 6 months agoamministrazione
Most Recent 8 months, 3 weeks agoSkyZeroZx
1 year, 10 months agocldy
3 years, 4 months agocldy
3 years, 4 months agoMkumar
3 years, 7 months ago