Complete the code to specify the read capacity units for a DynamoDB table.
ProvisionedThroughput={"ReadCapacityUnits": [1], "WriteCapacityUnits": 5}The ReadCapacityUnits must be a positive integer to allocate read capacity for the table.
Complete the code to enable burst capacity by setting the write capacity units.
ProvisionedThroughput={"ReadCapacityUnits": 5, "WriteCapacityUnits": [1]Write capacity units must be a positive integer to allow burst capacity for writes.
Fix the error in the code to correctly define the provisioned throughput for burst capacity.
ProvisionedThroughput={"ReadCapacityUnits": [1], "WriteCapacityUnits": 10}The ReadCapacityUnits must be a positive integer, not a string or negative number.
Fill both blanks to set read and write capacity units to enable burst capacity.
ProvisionedThroughput={"ReadCapacityUnits": [1], "WriteCapacityUnits": [2]Both read and write capacity units must be positive integers to allow burst capacity.
Fill all three blanks to create a DynamoDB table with burst capacity enabled and a key schema.
CreateTable({"TableName": "MyTable", "AttributeDefinitions": [{"AttributeName": [1], "AttributeType": "S"}], "KeySchema": [{"AttributeName": [1], "KeyType": [2]], "ProvisionedThroughput": {"ReadCapacityUnits": [3], "WriteCapacityUnits": 20}})The AttributeName must be a string naming the key attribute, KeyType must be "HASH" for the partition key, and ReadCapacityUnits must be a positive integer to enable burst capacity.