DynamoDB - with AWS SDK
What is wrong with this code snippet?
import boto3
resource = boto3.resource('dynamodb')
response = resource.get_item(TableName='MyTable', Key={'id': '123'})
print(response['Item'])