awscli DescribeUserPoolClient 没有 return 几乎任何东西,尽管文档应该 return 所有 appClient 设置
awscli DescribeUserPoolClient doesn't return almost anything despite the documentation it should return all appClient settings
我正在尝试 运行 通过 python 代码和 cloudshell 运行 DescribeUserPoolClient,并且此命令 return 几乎没有任何作用:
{
"UserPoolClient": {
"UserPoolId": "id",
"ClientName": "name",
"ClientId": "id",
"ClientSecret": "secret",
"LastModifiedDate": "2021-05-10T14:21:24.733000+00:00",
"CreationDate": "2021-05-10T14:21:24.733000+00:00",
"RefreshTokenValidity": 30,
"TokenValidityUnits": {},
"AllowedOAuthFlows": [
"client_credentials"
],
"AllowedOAuthScopes": [
":write"
],
"AllowedOAuthFlowsUserPoolClient": true
}
}
这只是参数而已returns。但是文档说应该有更多类似“ExplicitAuthFlows”和其他的。有没有 aws 的东西或者我的访问权限?
对于遇到相同问题的任何人:如果您默认设置了任何 属性 并且从未触及它(从未编辑过),亚马逊将不会 return 请求它们。这也适用于许多其他 aws cli 命令。
也许这是常识,但我为此苦苦挣扎)
我正在尝试 运行 通过 python 代码和 cloudshell 运行 DescribeUserPoolClient,并且此命令 return 几乎没有任何作用:
{
"UserPoolClient": {
"UserPoolId": "id",
"ClientName": "name",
"ClientId": "id",
"ClientSecret": "secret",
"LastModifiedDate": "2021-05-10T14:21:24.733000+00:00",
"CreationDate": "2021-05-10T14:21:24.733000+00:00",
"RefreshTokenValidity": 30,
"TokenValidityUnits": {},
"AllowedOAuthFlows": [
"client_credentials"
],
"AllowedOAuthScopes": [
":write"
],
"AllowedOAuthFlowsUserPoolClient": true
}
} 这只是参数而已returns。但是文档说应该有更多类似“ExplicitAuthFlows”和其他的。有没有 aws 的东西或者我的访问权限?
对于遇到相同问题的任何人:如果您默认设置了任何 属性 并且从未触及它(从未编辑过),亚马逊将不会 return 请求它们。这也适用于许多其他 aws cli 命令。 也许这是常识,但我为此苦苦挣扎)