CDK: put aws apigateway events on to default bus in EventBridge

0

As I understand in order to put events on to the default bus, I need to associate/create a role with PutEvents permission. How can I do that in cdk to put aws apigateway events on to default bus. Thanks

1개 답변
1

To add additional permissions to you function use the addToRolePolicy method.

As a basic example for EventBridge.

myFunction.addToRolePolicy(new iam.PolicyStatement({ 
      actions: ['events:PutEvents'],
      resources: ['*'],
    }))
AWS
Marco
답변함 2년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠