【发布时间】:2018-07-10 07:25:30
【问题描述】:
我试图弄清楚如何在我的 CloudFormation 模板中将验证类型从 Code(默认)设置为 Link。
如果我看一下docs,就没有提到任何内容。 我的 CloudFormation 看起来像
SomeUserPoolResourceName:
Type: AWS::Cognito::UserPool
Properties:
UserPoolName: SomeResource_User_Pool
EmailVerificationType: Link # I want something like this
EmailVerificationSubject: 'Your verification link'
EmailVerificationMessage: 'Please click the link below to verify your email address. {##Verify Email##}' # fails because {####} is required
AliasAttributes:
- email
AutoVerifiedAttributes:
- email
Policies:
PasswordPolicy:
- ....
Schema:
- ....
是否可以通过 CloudFormation 进行配置?
【问题讨论】:
标签: amazon-web-services amazon-cloudformation amazon-cognito