Python boto3 AWS Dynamodb table Query & Scan methods on 'Client' object vs 'Resource' object – Amazon web services
https://boto3.amazonaws.com/v1/documentation/api/1.9.42/reference/services/dynamodb.html#service-resource For Dynamodb webservice we have dynamodb = boto3.resource('dynamodb') and client = boto3.client('dynamodb') Both have Query and Scan methods. Are there any pros and cons using Query on a client object vs Resource object?