Which of the following is the correct way to define a GET method in API Gateway to fetch an item from DynamoDB?
AUse HTTP GET with a path parameter for the key and integrate with DynamoDB GetItem action
BUse HTTP POST with a JSON body containing the key and integrate with DynamoDB PutItem action
CUse HTTP DELETE with query parameters and integrate with DynamoDB DeleteItem action
DUse HTTP PUT with path parameters and integrate with DynamoDB UpdateItem action