Complete the code to specify the table name when creating a DynamoDB table.
TableName='[1]',
The TableName parameter sets the name of the DynamoDB table. Here, 'Users' is a valid table name.
Complete the code to define the primary key attribute name for the DynamoDB table.
"AttributeName": "[1]",
The AttributeName defines the name of the primary key attribute. 'UserId' is a common choice for user tables.
Fix the error in the key schema by completing the code with the correct key type.
"KeyType": "[1]"
The KeyType must be 'HASH' for the partition key in DynamoDB. 'SORT' is used for sort keys, but here we define the partition key.
Fill both blanks to define the attribute type and key type correctly in the table creation.
"AttributeType": "[1]", "KeyType": "[2]"
The attribute type 'S' means string, which is common for keys like 'UserId'. The key type 'HASH' defines it as the partition key.
Fill all three blanks to complete the provisioned throughput settings for the DynamoDB table.
"ProvisionedThroughput": {"ReadCapacityUnits": [1], "WriteCapacityUnits": [2], "SomeOtherSetting": [3]
ReadCapacityUnits is set to 15, WriteCapacityUnits to 10, and 'SomeOtherSetting' is 0 as a placeholder (not a real setting, but for exercise).