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.
有没有办法我们可以使用版本 ID 在特定版本的 s3 对象上运行选择对象内容(s3 选择)?
我在选择对象内容文档中找不到任何引用来指定版本 ID,就像我们在获取对象请求中有版本 ID 字段一样。
看起来这不可能。
该select_object_content()函数接受 Bucket 和 Key,但不接受 VersionId。
select_object_content()
终于根据发布到 aws sdk git 通道的请求找到了解决方案。
request.putCustomQueryParameter("versionId", "<Your-version-Id>");
aws 文档应该很快更新,因为它在那里丢失了。