1 Answer
- Newest
- Most votes
- Most comments
0
In my case, the permissions are associated with the API Gateway method. So what I did to remove them was:
(TypeScript CDK)
const permissionsToRemove = method.node.children.filter(c => c instanceof CfnPermission);
permissionsToRemove.forEach(permission => method.node.tryRemoveChild(permission.node.id));
Where method is a Method type from API Gateway.
answered 3 years ago
Relevant content
asked 3 years ago
