ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 125 - SAP-C01 discussion

Report
Export

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"
Answers
A.
"Effect": "Allow", "Action": ["Describe"], "Resource": "Billing"
B.
"Effect": "Allow", "Action": ["aws-portal: ViewBilling"], "Resource": "*"
Answers
B.
"Effect": "Allow", "Action": ["aws-portal: ViewBilling"], "Resource": "*"
C.
"Effect": "Allow", "Action": ["aws-portal: ViewUsage"], "Resource": "*"
Answers
C.
"Effect": "Allow", "Action": ["aws-portal: ViewUsage"], "Resource": "*"
D.
"Effect": "Allow", "Action": ["AccountUsage], "Resource": "*"
Answers
D.
"Effect": "Allow", "Action": ["AccountUsage], "Resource": "*"
Suggested answer: C

Explanation:

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

asked 16/09/2024
Shafqat Balouch
29 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first