AWS CDK で IAM Role に Amazon Cognito User Pools のポリシーを設定する場合は grant(grantee, ...actions) メソッドを使う. docs.aws.amazon.com 第二引数の ...actions は可変長引数を受け取るため,以下のようにポリシーを並べて実装できる❗️ userPool.grant( role, 'cognito-idp:AdminCreateUser', 'cognito-idp:Describe*', 'cognito-idp:Get*', 'cognito-idp:List*', ) もしくはスプレッド…