All Content tagged with AWS Step Functions
AWS Step Functions is a low-code, visual workflow service that developers use to build distributed applications, automate IT and business processes, and build data and machine learning pipelines using AWS services.
Content language: English
Select up to 5 tags to filter
Sort by most recent
I have a step function for doing a migration task on a dynamo table. I need to turn of the kinesis stream associated with the table using aws SDK first step and then run the migration task then turn...
Hello,
Step functions now provides direct integration with 3rd party APIs instead of using lambdas for API invocation. I was able to integrate external API with Step function by following...
I have a Lambda function that inserts to an RDS MySQL database. It works fine when I test the Lambda function, and I can see the database immediately has the new inserted information.
But when I run...
Hello AWS Community,
I am working with AWS Step Functions and facing a challenge related to handling errors in [HTTP Invoke...
I have the state function state machine config looks like below:
{
"StartAt": "DownloadAndValidate",
"States": {
"DownloadAndValidate": {
"Type": "Task",
"Resource":...
Need to implement a framework to send approval email for two persons once we received approval then only need to take snapshot in boto3 and proceeding further
Could you please help me how to send...
Hey Team, I have state machine with an asynchronous waiting activity which is responsible for generating new token every 24 hrs, we are using activity worker poller implementation of our state...
I can define several endpoint services including interface endpoints (for step functions, secret manager etc) and gateway endpoints (s3). I have private subnets attached with nat gw and public subnets...
I have a step function which iterates over several data, at the end of the map I got a single json with all iterations and then uploads as json file to S3 bucket. This file on S3 I will need to use it...
Hi,
Does Step Functions Local support CodeBuild? I have a step in my state machine which starts as follows:
"StartBuild": {
"Type": "Task",
"Resource":...
I have a simple use case. I have a knowledge base of construction building codes and descriptions. I would like to build an application that allows users to prompt Bedrock with questions about the...
Hi
I have a step function that executes the lambda function first and then lambda simply returns the below output
```
"{\"job_status\": \"COMPLETE\"}"
```
Based on Job Status value next step to take...