Bird
0
0

Which of the following is the correct JSON snippet to enable encryption for an RDS instance using AWS CloudFormation?

easy📝 Syntax Q3 of 15
AWS - RDS and Relational Databases
Which of the following is the correct JSON snippet to enable encryption for an RDS instance using AWS CloudFormation?
A{ "EncryptionEnabled": true }
B{ "EncryptedStorage": true }
C{ "EnableEncryption": true }
D{ "StorageEncrypted": true }
Step-by-Step Solution
Solution:
  1. Step 1: Recall the correct property name for encryption in CloudFormation

    The property to enable encryption is StorageEncrypted set to true.
  2. Step 2: Verify the JSON syntax and property name

    { "StorageEncrypted": true } correctly uses StorageEncrypted with boolean true.
  3. Final Answer:

    { "StorageEncrypted": true } -> Option D
  4. Quick Check:

    CloudFormation encryption property = StorageEncrypted [OK]
Quick Trick: Use StorageEncrypted: true to enable RDS encryption in CloudFormation [OK]
Common Mistakes:
  • Using incorrect property names like EncryptedStorage
  • Using string 'true' instead of boolean true
  • Confusing encryption property with other settings

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes