2017-08-12 5 views
0

AWSドキュメントは、単にCognitoEventsのプロパティがString: Stringであると言うだけでは役に立ちません。私はEvent: Lambda ARNであることを示唆しているGitHubに関するトピックを見つけましたが、イベントが何であるかについての詳細はありませんでした(私はsyncTriggerの行に沿って何かを推測するでしょう)。Cognitoアイデンティティプール作成用のCloudFormation CognitoEventsのリスト

AWS::Cognito::IdentityPoolテンプレートのCognitoEventsプロパティにどのようなイベントが挿入されるのでしょうか。

答えて

1

最終的に推測が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

これは他の誰かに役立ちます願っています!

+0

あなたの答えに正しいと印を付けてください。それは十分に受け入れられる – Birowsky

関連する問題