Home > other >  AWS: How to find out which step function is being called by API Gateway
AWS: How to find out which step function is being called by API Gateway

Time:07-16

New to AWS and to coding in general here. Please see attached photo. This API calls an AWS Step Function. How can I find out which step function this API calls?

enter image description here

CodePudding user response:

You actually don't define it on this screen, and because of that you can't tell which step function will be called. The function name and stateMachineArn will be passed as parameters to the request to an API.

See an example and explanation here and here

  • Related