how many objects are returned by aws s3api list-objects?
问题 I am using: aws s3api list-objects --endpoint-url https://my.end.point/ --bucket my.bucket.name --query 'Contents[].Key' --output text to get the list of files in a bucket. The aws s3api list-object documentation page says that this command returns only up to a 1000 objects, however I noticed that in my case it returns the names of all files in my bucket. For example when I run the following command: aws s3api list-objects --endpoint-url https://my.end.point/ --bucket my.bucket.name --query