DynamoDB - with AWS SDK
Given the following code snippet using Boto3 resource:
import boto3
dynamodb = boto3.resource('dynamodb')
table = dynamodb.Table('Users')
response = table.get_item(Key={'UserId': '123'})
print(response['Item']['Name'])
What will this code print if the item exists with Name 'Alice'?