Complete the code to specify the reserved read capacity units for a DynamoDB table.
TableName: "Music", ProvisionedThroughput: { ReadCapacityUnits: [1], WriteCapacityUnits: 5 }
The ReadCapacityUnits must be set to a positive integer. Here, 5 is a common reserved capacity value.
Complete the code to specify the reserved write capacity units for a DynamoDB table.
TableName: "Orders", ProvisionedThroughput: { ReadCapacityUnits: 5, WriteCapacityUnits: [1] }
WriteCapacityUnits must be a positive integer. 10 is a valid reserved capacity for writes.
Fix the error in the reserved capacity specification for the DynamoDB table.
ProvisionedThroughput: { ReadCapacityUnits: [1], WriteCapacityUnits: 5 }ReadCapacityUnits must be a positive integer, not a string or negative number.
Fill both blanks to set reserved read and write capacity units correctly.
ProvisionedThroughput: { ReadCapacityUnits: [1], WriteCapacityUnits: [2] }ReadCapacityUnits is set to 10 and WriteCapacityUnits to 5, both positive integers.
Fill all three blanks to define reserved capacity and table name correctly.
TableName: "[1]", ProvisionedThroughput: { ReadCapacityUnits: [2], WriteCapacityUnits: [3] }
The table name is "Users" with 5 read and 10 write capacity units reserved.