https://github.com/abhimanyuhk/aws-step-function-activity
https://github.com/abhimanyuhk/aws-step-function-activity
aws-step-function java spring-boot
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/abhimanyuhk/aws-step-function-activity
- Owner: AbhimanyuHK
- Created: 2018-10-28T06:25:25.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-28T07:07:42.000Z (over 7 years ago)
- Last Synced: 2025-01-05T12:28:59.745Z (about 1 year ago)
- Topics: aws-step-function, java, spring-boot
- Language: Java
- Size: 47.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AWS-Step-Function-Activity
### AWS Step Function Definition.
```
{
"Comment": "An example using a Task state.",
"StartAt": "Hello",
"Version": "1.0",
"TimeoutSeconds": 300,
"States":
{
"Hello": {
"Type": "Task",
"Resource": "arn:aws:states:us-west-2:337226440425:activity:Hello",
"End": true
}
}
}
```
### Run AWS Step Funcation Activity
- Compile Project
$ ``` mvn clean install ```
- Run application
$ ``` mvn spring-boot:run```