Updating the value of DynamoDB table with boto3 implemented lambda function
问题 I am trying to achieve an update operation using my API method to update the content of the table. I have following lambda code set up: def lambda_handler(event, context): param = event['queryStringParameters']['employeID'] name = event['queryStringParameters']['employeName'] dynamodb = boto3.resource('dynamodb', region_name="us-east-1") table = dynamodb.Table('api_demo_employe') response = table.update_item( Key = { 'employeID' : param } ) I need to figure out how can i set the