gpt4 book ai didi

amazon-web-services - 如何使用 aws cloudformation 模板在 aws cognito 用户池中设置所需属性?

转载 作者:行者123 更新时间:2023-12-01 07:51:54 24 4
gpt4 key购买 nike

Aws cognito console screen

在使用 cloudformation 模板创建用户池时,我想添加以下属性(在所附图像链接中标记)。我在 AWS 文档中没有找到任何有用的内容。

它允许设置别名属性,如 aws cloudformation cognito documentation 中所述。 .

有人尝试过这个或者对此有任何想法吗?

最佳答案

我设法使用 AWS::cognito::UserPool 的 schema 属性来完成它:

"myApiUserPool": {
"Type": "AWS::Cognito::UserPool",
"Properties": {
"AdminCreateUserConfig": {
"AllowAdminCreateUserOnly": true
},
"Schema": [
{
"Mutable": false,
"Name": "email",
"Required": true
},
{
"Mutable": false,
"Name": "family_name",
"Required": true
},
{
"Mutable": false,
"Name": "name",
"Required": true
}
],
"AutoVerifiedAttributes": [
"email"
],
"UserPoolName": {
"Fn::Sub": "myApiUserPool${envParameter}"
}
}
}

关于amazon-web-services - 如何使用 aws cloudformation 模板在 aws cognito 用户池中设置所需属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46302488/

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