Created
May 28, 2023 21:34
-
-
Save maskaravivek/9810f50ad07ad474080f9b34b752aafe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { | |
| aws_iam as iam | |
| } from 'aws-cdk-lib'; | |
| var cognitoPolicyStatement = new iam.PolicyStatement(); | |
| cognitoPolicyStatement.addActions("cognito-idp:*"); | |
| cognitoPolicyStatement.addResources("*"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment