gpt4 book ai didi

amazon-web-services - 如何使用 aws CLI 获取 API key

转载 作者:行者123 更新时间:2023-12-03 19:23:39 33 4
gpt4 key购买 nike

我有一个脚本,我想在其中获取 AWS API 网关 ID 和 API key 值。到目前为止,我已经能够使用 cli 获取 API 网关 ID:

aws apigateway get-api-keys --query 'items[?name==`my-api-key-name`].id' --output text --region us-east-1

但我无法获取 API key 的值。我尝试了以下 cli,但没有运气:
aws apigateway get-api-keys --query 'items[?name==`my-api-key-name`].value' --output text --region us-east-1

有人可以帮助我吗?

最佳答案

您缺少 --include-values key 。

你可以试试这个:

aws apigateway get-api-keys --query 'items[?name==`my-api-key-name`].value' --include-values --output text --region us-east-1

或这个:
aws apigateway get-api-key --api-key <api-key-id> --include-value

Here 你可以找到更多信息。

关于amazon-web-services - 如何使用 aws CLI 获取 API key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58427213/

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