0 votes
in AWS by

Your application has the requirement to store data in a backend data store. Indexing should be possible on the data, but the data does not conform to any schema. 

Which of the following would be the ideal data store to choose for this application?

1 Answer

0 votes
by

Answer - B.

The below AWS Documentation mentions the differences between AWS DynamoDB and other traditional database systems.

One of the major differences is the schemaless nature of the database.

Option A is invalid since this is normally used for databases that perform to a particular schema.

Option C is invalid since this is normally used for columnar based databases.

Option D is invalid since this is normally used for object-level storage.

...