Это может вернуть список Python всех ключей в корзине:
import boto3
s3_resource = boto3.resource('s3', region_name='ap-southeast-2')
# Get a list of all Keys in the bucket
bucket = s3_resource.Bucket('my-bucket')
key_list = [object.key for object in bucket.objects.all()]
# Do something here with key_list
for key in key_list:
print(f'I found {key}')