in filter_aws.py [0:0]
def execute(self, listing, response):
"""Apply filter.
Args:
listing: data returned from aws api.
response: relevant data returned to caller.
"""
if 'Quantity' in response:
if 'MaxItems' in response:
if response['MaxItems'] <= response['Quantity']:
self.complete = False
del response['MaxItems']
del response['Quantity']