Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看到有一个 S3GetObjectMetaDataRequest,但是有什么方法可以获取存储桶中所有对象的元数据吗?我检查了 S3ObjectSummary,它没有任何元数据。
要通过 API 获取有关存储桶中对象的信息,您必须遍历枚举对象列表,即您必须获取对象列表,然后单独调用您想要获取信息的每个对象,即没有办法比如说“给我一个包含所有对象元数据的数组”。在使用 S3 对象版本控制数小时后,我了解到这一点。