Hi all, I'm deprecating this repository as I've moved the functionality provided in this package over to this repository and package. Hope to see you there :)
- Contains a generated enum list of all AWS IAM actions.
- Start building AWS IAM policy statements without having to check for typos in your actions.
- See a full list of available actions for a service.
npm install @strongishllama/aws-iam-constants
new iam.PolicyStatement({
actions: [
DynamoDB.GET_ITEM,
DynamoDB.PUT_ITEM,
DynamoDB.QUERY
],
resources: [
`${table.tableArn}/index/*`,
table.tableArn
]
})