用于Cognito身份池创建的CloudFormation CognitoEvents列表

Kyl*_*yle 0 amazon-web-services aws-cloudformation

AWS文档无济于事,它只是说说属性为CognitoEventsis String: String。我在GitHub上找到了一个暗示它的主题Event: Lambda ARN,但没有具体说明事件可能是什么(我可能会猜中syncTrigger)。

知道什么事件会填充模板的CognitoEvents属性AWS::Cognito::IdentityPool吗?

Kyl*_*yle 9

最终猜测SyncTrigger是正确的(大写“ S”)。这是完整配置的示例:

Type: "AWS::Cognito::IdentityPool" Properties: IdentityPoolName: YourPoolName AllowUnauthenticatedIdentities: true | false DeveloperProviderName: accounts.example.com SupportedLoginProviders: graph.facebook.com: xxxx accounts.google.com: xxxx-xxxx.apps.googleusercontent.com api.twitter.com: xxxx;xxxx CognitoEvents: SyncTrigger: Lambda Function ARN

希望这对别人有帮助!