Bird
0
0

Which of the following is the correct syntax to enable server-side encryption on a DynamoDB table using AWS CLI?

easy📝 Syntax Q3 of 15
DynamoDB - Backup and Recovery
Which of the following is the correct syntax to enable server-side encryption on a DynamoDB table using AWS CLI?
Aaws dynamodb create-table --table-name MyTable --sse-specification Enabled=true
Baws dynamodb create-table --table-name MyTable --encryption Enabled
Caws dynamodb create-table --table-name MyTable --enable-encryption true
Daws dynamodb create-table --table-name MyTable --encryption-spec Enabled
Step-by-Step Solution
Solution:
  1. Step 1: Recall AWS CLI syntax for encryption

    The correct parameter to enable server-side encryption is --sse-specification Enabled=true.
  2. Step 2: Match the correct syntax option

    aws dynamodb create-table --table-name MyTable --sse-specification Enabled=true uses the correct parameter and value format for encryption.
  3. Final Answer:

    aws dynamodb create-table --table-name MyTable --sse-specification Enabled=true -> Option A
  4. Quick Check:

    Encryption syntax = --sse-specification Enabled=true [OK]
Quick Trick: Use --sse-specification Enabled=true to enable encryption [OK]
Common Mistakes:
MISTAKES
  • Using wrong parameter names
  • Incorrect boolean values
  • Mixing encryption with other flags

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More DynamoDB Quizzes