Complete the code to specify a string attribute type in DynamoDB.
AttributeValue = {"[1]": "Hello"}In DynamoDB, the attribute type for strings is S.
Complete the code to specify a number attribute type in DynamoDB.
AttributeValue = {"[1]": "123"}In DynamoDB, the attribute type for numbers is N.
Fix the error in the code to correctly specify a boolean attribute type in DynamoDB.
AttributeValue = {"[1]": true}The correct attribute type for boolean values in DynamoDB is BOOL.
Fill both blanks to create a list attribute with two string items in DynamoDB.
AttributeValue = {"[1]": [ {"S": "apple"}, {"[2]": "banana"} ]}The outer attribute type for a list is L, and each string item inside uses S.
Fill all three blanks to create a map attribute with two keys and their string values in DynamoDB.
AttributeValue = {"[1]": {"name": {"[2]": "John"}, "city": {"[3]": "Paris"}}}The map attribute type is M, and the string values inside use S.
