Creating a Step Functions API using API Gateway
You can use Amazon API Gateway to associate your AWS Step Functions APIs with methods in an API Gateway API. When an HTTPS request is sent to an API method, API Gateway invokes your Step Functions API actions.
This tutorial shows you how to create an API that uses one resource and the POST
method to communicate with the StartExecution
API action.
You'll use the AWS Identity and Access Management (IAM) console to create a role for API Gateway. Then, you'll use the
API Gateway console to create an API Gateway API, create a resource and method, and map the method to
the StartExecution
API action. Finally, you'll deploy and test your API.
Note
Although Amazon API Gateway can start a Step Functions execution by calling StartExecution
, you
must call DescribeExecution
to get the result.
Step 1: Create an IAM Role for API Gateway
Before you create your API Gateway API, you need to give API Gateway permission to call Step Functions API actions.
To set up permissions for API Gateway
-
Sign in to the IAM console
and choose Roles, Create role. -
On the Select trusted entity page, do the following:
For Trusted entity type, keep the default selection of AWS service.
For Use case, choose API Gateway from the dropdown list.
Select API Gateway, and then choose Next.
-
On the Add permissions page, choose Next.
-
(Optional) On the Name, review, and create page, enter details, such as the role name. For example, enter
APIGatewayToStepFunctions
. Choose Create role.
The IAM role appears in the list of roles.
-
Choose the name of your role and note the Role ARN, as shown in the following example.
arn:aws:iam::123456789012:role/APIGatewayToStepFunctions
To attach a policy to the IAM role
-
On the Roles page, search for your role (
APIGatewayToStepFunctions
), and then choose the role. -
On the Permissions tab, choose Add permissions, and then choose Attach policies.
-
On the Attach Policy page, search for
AWSStepFunctionsFullAccess
, choose the policy, and then choose Add permissions.
Step 2: Create your API Gateway API
After you create your IAM role, you can create your custom API Gateway API.
To create the API
-
Open the Amazon API Gateway console
, and then choose Create API. On the Choose an API type page, in the REST API pane, choose Build.
On the Create REST API page, select New API, and then enter
StartExecutionAPI
for the API name.Keep API endpoint type as Regional, and then choose Create API.
To create a resource
-
On the Resources page of
StartExecutionAPI
, choose Create resource. -
On the Create resource page, enter
execution
for Resource name, and then choose Create resource.
To create a POST method
-
Choose the /execution resource, and then choose Create method.
-
For Method type, choose
POST
. -
For Integration type, choose AWS service.
-
For AWS Region, choose a Region from the list.
-
For AWS service, choose Step Functions from the list.
Keep AWS subdomain blank.
-
For HTTP method, choose POST from the list.
Note
All Step Functions API actions use the HTTP
POST
method. -
For Action type, select Use action name.
-
For Action name, enter
StartExecution
. -
For Execution role, enter the role ARN of the IAM role that you created earlier, as shown in the following example.
arn:aws:iam::123456789012:role/APIGatewayToStepFunctions
-
Keep the default options for Credential cache and Default timeout, and then choose Save.
The visual mapping between API Gateway and Step Functions is displayed on the /execution - POST - Method execution page.
Step 3: Test and Deploy the API Gateway API
Once you have created the API, test and deploy it.
To test the communication between API Gateway and Step Functions
-
On the /execution - POST - Method Execution page, choose the Test tab. You might need to choose the right arrow button to show the tab.
-
On the /execution - POST - Method Test tab, copy the following request parameters into the Request body section using the ARN of an existing state machine (or create a new state machine that uses a Lambda function), and then choose Test.
{ "input": "{}", "name": "MyExecution", "stateMachineArn": "
arn:aws:states:us-east-1:123456789012:stateMachine:HelloWorld
" }For more information, see the
StartExecution
Request Syntax in the AWS Step Functions API Reference.Note
If you don't want to include the ARN of your state machine in the body of your API Gateway call, you can configure a mapping template in the Integration request tab, as shown in the following example.
{ "input": "$util.escapeJavaScript($input.json('$'))", "stateMachineArn": "$util.escapeJavaScript($stageVariables.arn)" }
With this approach, you can specify ARNs of different state machines based on your development stage (for example,
dev
,test
, andprod
). For more information about specifying stage variables in a mapping template, see$stageVariables
in the API Gateway Developer Guide. -
The execution starts and the execution ARN and its epoch date are displayed under Response body.
{ "executionArn": "
arn:aws:states:us-east-1:123456789012:execution:HelloWorld:MyExecution
", "startDate": 1486768956.878 }Note
You can view the execution by choosing your state machine on the AWS Step Functions console
.
To deploy your API
-
On the Resources page of
StartExecutionAPI
, choose Deploy API. For Stage, select New stage.
For Stage name, enter
alpha
.(Optional) For Description, enter a description.
Choose Deploy.
To test your deployment
-
On the Stages page of
StartExecutionAPI
, expand alpha, /, /execution, POST, and then choose the POST method. -
Under Method overrides, choose the copy icon to copy your API's invoke URL. The full URL should look like the following example.
https://a1b2c3d4e5.execute-api.us-east-1.amazonaws.com/alpha/execution
-
From the command line, run the
curl
command using the ARN of your state machine, and then invoke the URL of your deployment, as shown in the following example.curl -X POST -d '{"input": "{}","name": "MyExecution","stateMachineArn": "arn:aws:states:us-east-1:123456789012:stateMachine:HelloWorld"}' https://a1b2c3d4e5.execute-api.us-east-1.amazonaws.com/alpha/execution
The execution ARN and its epoch date are returned, as shown in the following example.
{"executionArn":"arn:aws:states:us-east-1:123456789012:execution:HelloWorld:MyExecution","startDate":1.486772644911E9}
Note
If you get a "Missing Authentication Token" error, make sure that the invoke URL ends with /execution.