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