- A
Enable S3 default encryption using AWS KMS
Why wrong: Encryption does not control access.
- B
Apply AWS WAF rules to the Lambda function
Why wrong: WAF is for HTTP requests, not S3 access.
- C
Remove the role and create a new role with full S3 access
Why wrong: Full access increases privilege, not least privilege.
- D
Add a bucket policy that restricts access to the Lambda execution role and includes conditions
Resource policies with conditions can restrict based on role and source.
Quick Answer
The answer is to add a bucket policy that restricts access to the Lambda execution role and includes conditions. This is correct because while the Lambda role’s identity-based policy grants s3:PutObject and s3:GetObject to the bucket, it does not prevent other principals or services from assuming that role and abusing those permissions. A resource-based policy on the S3 bucket, combined with conditions like aws:SourceArn or aws:SourceAccount, enforces least privilege at the resource level by ensuring only the specific Lambda function can access the bucket. On the Cisco SCOR 350-701 exam, this tests your understanding of defense-in-depth and resource-level access control in cloud environments—a common trap is thinking the role policy alone is sufficient. Remember the mnemonic: “Role gives the key, but the bucket policy locks the door.”
350-701 Cloud Security Practice Question
This 350-701 practice question tests your understanding of cloud security. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A security team notices that an AWS Lambda function is allowed to access an S3 bucket containing PII. The Lambda role has an attached policy that grants s3:PutObject and s3:GetObject to the bucket. Which action would be the most effective to ensure least privilege?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"least"Why it matters: You want the option with minimum overhead, fewest steps, or lowest impact — not the most feature-rich or comprehensive answer.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Add a bucket policy that restricts access to the Lambda execution role and includes conditions
Option D is correct because adding a bucket policy that restricts access to the Lambda execution role and includes conditions (such as aws:SourceArn or aws:SourceAccount) enforces least privilege at the resource level. This ensures that only the specific Lambda function can perform s3:PutObject and s3:GetObject on the S3 bucket, preventing any other principal or service from abusing the role's permissions.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Enable S3 default encryption using AWS KMS
Why it's wrong here
Encryption does not control access.
- ✗
Apply AWS WAF rules to the Lambda function
Why it's wrong here
WAF is for HTTP requests, not S3 access.
- ✗
Remove the role and create a new role with full S3 access
Why it's wrong here
Full access increases privilege, not least privilege.
- ✓
Add a bucket policy that restricts access to the Lambda execution role and includes conditions
Why this is correct
Resource policies with conditions can restrict based on role and source.
Clue confirmation
The clue word "least" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often confuse resource-based policies (bucket policies) with identity-based policies (IAM roles) and think that modifying the IAM role alone is sufficient, but Cisco tests that least privilege requires restricting access at both the identity and resource levels, especially for cross-service scenarios.
Detailed technical explanation
How to think about this question
Under the hood, S3 bucket policies are evaluated in conjunction with IAM policies; for cross-service access, the bucket policy must explicitly allow the Lambda execution role ARN and include a condition like aws:SourceArn to prevent confused deputy attacks. A real-world scenario is when a Lambda function processes PII from an S3 bucket—without the bucket policy restriction, any other Lambda function or IAM user with the same role could access the data, leading to a data breach.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A junior network technician can log in to a core router but cannot reach the enable prompt or configuration mode. The AAA server is authenticating the login — but the authorisation policy only grants privilege level 1, not 15. Authentication (who you are) is working; authorisation (what you can do) is not.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Cloud Security — study guide chapter
Learn the concepts, then practise the questions
- →
Cloud Security practice questions
Targeted practice on this topic area only
- →
All 350-701 questions
500 questions across all exam domains
- →
Cisco SCOR / CCNP Security Core 350-701 study guide
Full concept coverage aligned to exam objectives
- →
350-701 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related 350-701 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Endpoint Protection and Detection practice questions
Practise 350-701 questions linked to Endpoint Protection and Detection.
Secure Network Access, Visibility and Enforcement practice questions
Practise 350-701 questions linked to Secure Network Access, Visibility and Enforcement.
Security Concepts practice questions
Practise 350-701 questions linked to Security Concepts.
Network Security practice questions
Practise 350-701 questions linked to Network Security.
Cloud Security practice questions
Practise 350-701 questions linked to Cloud Security.
Content Security practice questions
Practise 350-701 questions linked to Content Security.
350-701 fundamentals practice questions
Practise 350-701 questions linked to 350-701 fundamentals.
350-701 scenario practice questions
Practise 350-701 questions linked to 350-701 scenario.
350-701 troubleshooting practice questions
Practise 350-701 questions linked to 350-701 troubleshooting.
Practice this exam
Start a free 350-701 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this 350-701 question test?
Cloud Security — This question tests Cloud Security — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Add a bucket policy that restricts access to the Lambda execution role and includes conditions — Option D is correct because adding a bucket policy that restricts access to the Lambda execution role and includes conditions (such as aws:SourceArn or aws:SourceAccount) enforces least privilege at the resource level. This ensures that only the specific Lambda function can perform s3:PutObject and s3:GetObject on the S3 bucket, preventing any other principal or service from abusing the role's permissions.
What should I do if I get this 350-701 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "least". You want the option with minimum overhead, fewest steps, or lowest impact — not the most feature-rich or comprehensive answer.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Last reviewed: Jun 25, 2026
This 350-701 practice question is part of Courseiva's free Cisco certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the 350-701 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.