0

I want to give full DynamoDB access for lambda in AWS serverless repo. But policies templates provided by them have not these permissions

Mayank
  • 325
  • 1
  • 4
  • 13

1 Answers1

1

You can get an example here

The key part is:

PutFunction:
  Type: AWS::Serverless::Function
  Properties:
      Policies: AmazonDynamoDBFullAccess
DJo
  • 2,133
  • 4
  • 30
  • 46