7 minutes
Building a Step Function with Error Handling in AWS with Python CDK

The automation of cloud infrastructure unsing infrastructure as code (IaC) is inevitable for your use cases. It lets you define and manage your cloud resources, version control and deploy them as needed in a robust and repeatable way. One of the popular IaC frameworks is the AWS Cloud Development Kit (CDK). It allows you to define infrastructure using Python, TypeScript, and Java.
In this blog post, I will show you how to create AWS resources using Python CDK as an IaC framework. I will use CDK to define a simple workflow that demonstrates the creation of several AWS resources:
- An S3 bucket with an event trigger
- A Step Function that will be triggered by the S3 bucket
- An SNS topic for error notifications
- A Lambda function that will fail (for the sake of the example)
The resources are created to perform the following tasks: when a file with a .txt extension is uploaded to an S3 bucket, a Step Function execution is triggered, which invokes a Lambda function. This Lambda function simply throws an error to demonstrate error handling. If the Lambda function fails, the step function handles a post to our created topic, which is subscribed to our email address, where we receive the error message.
This kind of set up is a good starting point to build more complex use cases and it has proven to be super useful and effective several times for me already. Maybe it helps you too!
Getting Started
To follow along with this tutorial, you will need to have the following:
- An AWS account
- Python 3.7 or later
- AWS CLI installed and configured
- AWS CDK installed and bootstrapped in your AWS account
This tutorial also assumes some familiarity with AWS and CDK. However, it should be sufficient to refresh your memory with these two resources:
Furthermore, I won’t go into detail about how to set up your app.py
file, which serves as the entry point for your CDK commands. If you want to follow along with the exact same example you can check out my GitHub repository
.
Let’s get started.
Project Overview
In this tutorial, we will define our AWS resources, which we will later deploy, in the aws-stack.py
file, which is located in the root/aws
directory (the file and foldernames could of course be different for your project).
Defining the AWS Resources with Python CDK
To define our resources, we first need to import the necessary modules in the aws-stack.py
file:
Next, we define our CdkStack class in the same file as before:
Configuring the S3 Bucket with Trigger
In our CdkStack class we will define and create an S3 bucket with an event trigger that will trigger a Step Function execution when a file with the .txt
-extension is uploaded to the bucket.
Here, we first create an S3 bucket named cdk-simple-workflow-bucket
with RemovalPolicy.DESTROY
, which means that the bucket will be destroyed when we delete the stack or change the name of the bucket. We also enable event_bridge_enabled
so that we can put a trigger for the Step Function on the bucket.
A Dummy Lambda Function
In this example, a lambda function that is simply raising an error is serving as a placeholder for the actual processing that could be done for your particular use case. With CDK we make use of aws_lambda.Function
to define the lambda resource, which takes the lambda code from another Python file.
The code for the lambda function is also written in Python in this example and resides in a file called test_failure.py
, which needs to be placed in the folder root/lambda
.
Configuring SNS for Error Notification
We also want to have a mechanism in place for handling unforeseen errors, that might occur during the life time of our step function and we do not always want to be looking at our AWS console all the time. It’s much more convenient to receive a message (e.g. an email) in case something goes wrong. For this we create an sns topic and add an email subscription with our own address which is supposed to receive the notifications.
The actual Step Function and Definition
Great, almost done here. We’re missing the integral part for our simple workflow - the actual step function and its definition.
Deployment
Now, if you have your AWS account, credentials and CDK all set up correctly, you should be ready to deploy the stack to your account using the usual cdk synth
and cdk deploy
commands. This will prompt us for the email address to use for the SNS subscription (see the CfnParameter
-resource), and then deploy our stack to AWS.
Testing the Infrastructure
To test our newly created infrastructure, we can upload a file with the .txt
extension to our S3 bucket using the AWS Management Console or the AWS CLI:
This should trigger our step function, which will invoke our Lambda function. Since our Lambda function is simply throwing an error in this example, our SNS topic should receive a notification with the error message, which should be sent to the email address we specified during deployment.
Conclusion
In this blog post, we have seen how to use the AWS Cloud Development Kit (CDK) to create AWS resources as code using Python. We have created a simple but super effective and useful workflow that uses an S3 bucket trigger to invoke a step function, which in turn invokes a Lambda function. We have also seen how to use SNS to receive notifications in case of Lambda function failures.
I hope this post serves as a good kickstarter to you, so that you can build more complex workflows in the future.