Closed
Description
Description
Currently the table.grant()
API is private:
aws-cdk/packages/@aws-cdk/aws-glue/lib/table.ts
Lines 328 to 334 in 42cf186
AFAIK that is not the typical CDK behavior. We usually expose grant
APIs to unblock users who want to grant custom permissions.
Use Case
I want to grant a custom permission to a glue table. Specifically I want to do:
table.grant(customResource, ['glue:UpdateTable']);
Proposed Solution
Expose the API as public
.
Other information
No response
Acknowledge
- I may be able to implement this feature request
- This feature might incur a breaking change