gpt4 book ai didi

amazon-web-services - AWS CLI S3 获取对象标签

转载 作者:行者123 更新时间:2023-12-04 08:06:46 37 4
gpt4 key购买 nike

我需要通过 AWS CLI 获取对象标签。是否可以显示所有对象标签?甚至显示标签中特定键的值。

最佳答案

您可以使用命令 aws s3api get-object-tagging --bucket bucketname --key objectkey 执行此操作.例如

➜  ~ aws s3 ls helloworld-20181029141519-deployment
2018-11-24 07:19:11 0 hello.world

➜ ~ aws s3api get-object-tagging --bucket helloworld-20181029141519-deployment --key hello.world
{
"TagSet": [
{
"Value": "1",
"Key": "tagged"
},
{
"Value": "bar",
"Key": "foo"
}
]
}

您可以使用 JMESPath表达式来过滤结果集。
➜  ~ aws s3api get-object-tagging --bucket helloworld-20181029141519-deployment --key hello.world --query "TagSet[?Key=='foo']"
[
{
"Value": "bar",
"Key": "foo"
}
]

关于amazon-web-services - AWS CLI S3 获取对象标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53458013/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com