Home > OS >  AWS Step Functions permission for Lambda
AWS Step Functions permission for Lambda

Time:09-21

How to give permission for lambda to invoke a stepfunction state machine in serverless YAML?

Error image

CodePudding user response:

You will need to add the states:StartExecution method as allowed in the lambda execution role. You will also need to make sure that the step function that you want to start is part of the resources you're allowed to start.

  • Related