SSE-S3 and IAM Policy Download: When Headers Matter
This DEA-C01 practice question tests your understanding of data store management. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. A key principle to apply: iAM Policy Conditions. 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 data engineer applies the above IAM policy to an IAM user. The user attempts to download an object from the bucket 'example-bucket' that is encrypted with SSE-S3 (AES256). Will the request succeed?
Yes, but only if the user also has s3:ListBucket permission.
Why wrong: Incorrect. The `s3:ListBucket` permission is not required for `s3:GetObject`. The request fails due to the encryption header condition, not missing ListBucket.
B
No, because the policy requires the encryption to be specified in the request.
Correct. The policy has a condition requiring the encryption header to be specified in the request. Since the user does not include it, the request is denied.
C
Yes, because the object is encrypted with SSE-S3 which uses AES256.
Why wrong: Incorrect. Although the object is encrypted with SSE-S3, the policy condition evaluates the request headers, not the object's encryption. The request still fails because the header is missing.
D
No, because the policy does not allow the s3:GetObject action for encrypted objects.
Why wrong: Incorrect. The policy does allow `s3:GetObject` for encrypted objects, but only if the request includes the encryption header. The user fails to meet that condition.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
No, because the policy requires the encryption to be specified in the request.
The IAM policy includes a condition that requires the request to include the `x-amz-server-side-encryption` header with value `AES256`. Even though the object is encrypted with SSE-S3, the policy condition evaluates the request headers, not the object's encryption state. Since the user does not specify the encryption header in the download request, the condition fails, and the request is denied.
Key principle: IAM Policy Conditions
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✗
Yes, but only if the user also has s3:ListBucket permission.
Why it's wrong here
Incorrect. The `s3:ListBucket` permission is not required for `s3:GetObject`. The request fails due to the encryption header condition, not missing ListBucket.
✓
No, because the policy requires the encryption to be specified in the request.
Why this is correct
Correct. The policy has a condition requiring the encryption header to be specified in the request. Since the user does not include it, the request is denied.
Related concept
IAM Policy Conditions
✗
Yes, because the object is encrypted with SSE-S3 which uses AES256.
Why it's wrong here
Incorrect. Although the object is encrypted with SSE-S3, the policy condition evaluates the request headers, not the object's encryption. The request still fails because the header is missing.
✗
No, because the policy does not allow the s3:GetObject action for encrypted objects.
Why it's wrong here
Incorrect. The policy does allow `s3:GetObject` for encrypted objects, but only if the request includes the encryption header. The user fails to meet that condition.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap is that candidates assume SSE-S3 is transparent and always allows access, overlooking that the IAM policy condition explicitly requires the encryption header in the request. The condition applies to the request, not the object's encryption-at-rest.
Detailed technical explanation
How to think about this question
Under the hood, SSE-S3 uses AES-256 with a unique key managed by S3, and decryption happens transparently on the server side when the object is retrieved. The condition in the IAM policy uses 's3:x-amz-server-side-encryption' and 's3:x-amz-server-side-encryption-aws-kms-key-id' — these are request headers that the client must include for SSE-C or SSE-KMS, but for SSE-S3, the header is not required because S3 handles encryption automatically. A real-world scenario is when a data engineer wants to enforce encryption in transit for sensitive data; they must carefully craft conditions to avoid blocking legitimate SSE-S3 access.
KKey Concepts to Remember
IAM Policy Conditions
SSE-S3
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
IAM Policy Conditions
Real-world example
How this comes up in practice
A media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.
Quick reference
AWS S3 Storage Class Comparison
Storage Class
Min Duration
Retrieval
Use Case
S3 Standard
None
Immediate
Frequently accessed data
S3 Standard-IA
30 days
Immediate
Infrequent access, rapid retrieval
S3 One Zone-IA
30 days
Immediate
Non-critical infrequent data
S3 Intelligent-Tiering
None
Immediate–hours
Unknown or changing access patterns
S3 Glacier Instant
90 days
Milliseconds
Archive with instant retrieval
S3 Glacier Flexible
90 days
Minutes–hours
Archive, flexible retrieval
S3 Glacier Deep Archive
180 days
Hours
Long-term compliance archive
What to study next
Got this wrong? Here's your next step.
Review iAM Policy Conditions, then practise related DEA-C01 questions on the same topic to reinforce the concept.
Data Store Management — This question tests Data Store Management — IAM Policy Conditions.
What is the correct answer to this question?
The correct answer is: No, because the policy requires the encryption to be specified in the request. — The IAM policy includes a condition that requires the request to include the `x-amz-server-side-encryption` header with value `AES256`. Even though the object is encrypted with SSE-S3, the policy condition evaluates the request headers, not the object's encryption state. Since the user does not specify the encryption header in the download request, the condition fails, and the request is denied.
What should I do if I get this DEA-C01 question wrong?
Review iAM Policy Conditions, then practise related DEA-C01 questions on the same topic to reinforce the concept.
What is the key concept behind this question?
IAM Policy Conditions
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 →
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. A data engineer attaches the above IAM policy to an IAM user. The user tries to download an object from my-bucket using the AWS CLI without specifying SSE headers. The object is stored with SSE-S3. Will the download succeed?
hard
A.No, because the object is encrypted and the user does not have decrypt permission.
B.No, because the request does not include the required encryption header.
C.Yes, because the object is encrypted with SSE-S3, which uses AES256.
✓ D.Yes, because the policy allows s3:GetObject on the bucket.
Why D: For SSE-S3 objects, no additional encryption headers are required on GET requests because S3 handles decryption transparently for authorized users. The IAM policy grants s3:GetObject, so the download succeeds.
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.
This DEA-C01 practice question is part of Courseiva's free Amazon Web Services 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 DEA-C01 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.