gpt4 book ai didi

amazon-web-services - aws-cli 只返回某些字段

转载 作者:行者123 更新时间:2023-12-03 23:10:55 26 4
gpt4 key购买 nike

鉴于此 aws-cli 的示例命令

aws rds describe-db-cluster-snapshots

我返回一个带有字段的对象列表。

我只想显示字段: "SnapshotCreateTime""DBClusterIdentifier"
我该怎么做呢?

最佳答案

AWS CLI 通过 --query 提供内置的输出过滤功能选项。

aws rds describe-db-cluster-snapshots --query 'DBClusterSnapshots[*].[SnapshotCreateTime,DBClusterIdentifier]' 

如果您的 ,上述内容将起作用AWS CLI 在同一区域中配置并具有单个 AWS CLI 配置文件。如果 AWS CLI 在不同的区域和不同的配置文件中配置,那么您可以使用以下命令。
 aws rds describe-db-cluster-snapshots --query 'DBClusterSnapshots[*].[SnapshotCreateTime,DBClusterIdentifier]' --region us-west-2 --profile test 

cli-usage-output

关于amazon-web-services - aws-cli 只返回某些字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57640665/

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