Bird
0
0

Which of the following is the correct way to enable encryption at rest in DynamoDB?

easy📝 Syntax Q12 of 15
DynamoDB - Backup and Recovery
Which of the following is the correct way to enable encryption at rest in DynamoDB?
ASet <code>EncryptionEnabled = true</code> in the table creation parameters.
BUse <code>EnableEncryption = 'yes'</code> in the AWS CLI command.
CAdd <code>EncryptData: true</code> in the item attributes.
DSpecify <code>SSESpecification: { Enabled: true }</code> when creating the table.
Step-by-Step Solution
Solution:
  1. Step 1: Recall DynamoDB encryption syntax

    Encryption at rest is enabled by setting SSESpecification: { Enabled: true } during table creation.
  2. Step 2: Check each option for correctness

    Only Specify SSESpecification: { Enabled: true } when creating the table. uses the correct syntax recognized by DynamoDB.
  3. Final Answer:

    Specify SSESpecification: { Enabled: true } when creating the table. -> Option D
  4. Quick Check:

    Encryption at rest = SSESpecification enabled [OK]
Quick Trick: Look for SSESpecification with Enabled true [OK]
Common Mistakes:
MISTAKES
  • Using incorrect parameter names like EncryptionEnabled
  • Trying to encrypt individual items instead of the table
  • Using string values instead of boolean true

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More DynamoDB Quizzes