Amazon web services – Python Boto3 DynamoDB
I am trying to query records from DynamoDB table using "IN" comparison operator, below is my code: import boto3 # Create a DynamoDB client dynamodb = boto3.client('dynamodb') # Define the query parameters table_name = 'tb' # Perform the query response…