我想要一个示例将AWS API Gateway与Step Function集成.我已阅读本教程使用API网关创建步骤函数API但该教程需要我以格式发送请求
{
"input": "{}",
"name": "PostmanExecution",
"stateMachineArn": "arn:aws:states:us-east-1:123456789012:stateMachine:Custom"
}
Run Code Online (Sandbox Code Playgroud)
我想发送普通请求并仅在API网关中配置此stateMachineArn,以便客户端不需要发送它.
amazon-web-services aws-lambda aws-api-gateway aws-step-functions